forked from grafana-toolbox/grafana-snapshots-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 820 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from grafana_snapshots.constants import (PKG_NAME, PKG_VERSION)
from setuptools import setup, find_packages
# Global variables
name = PKG_NAME
version = PKG_VERSION
setup(
name=name,
version=version,
description='A Python-based application to build Grafana snapshots using the Grafana API and grafana-client python interface',
long_description_content_type='text/markdown',
long_description=open('README.md', 'r').read(),
author="author",
author_email="[email protected]",
url="https://github.com/peekjef72/grafana-snapshots-tool",
entry_points={
'console_scripts': [
'grafana-snapshots = grafana_snapshots.cli:main'
]
},
packages=find_packages(),
install_requires=open('./requirements.txt').readlines(),
package_data={'': ['conf/*']},
)