forked from ysde/grafana-backup-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 848 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
26
27
28
29
30
31
32
from grafana_backup.constants import (PKG_NAME, PKG_VERSION)
from setuptools import setup, find_packages
# Global variables
name = PKG_NAME
version = PKG_VERSION
requires = [
'requests',
'docopt',
'boto3',
'azure-storage-blob',
'google-cloud-storage'
]
setup(
name=name,
version=version,
description='A Python-based application to backup Grafana settings using the Grafana API',
long_description_content_type='text/markdown',
long_description=open('README.md', 'r').read(),
author="author",
author_email="[email protected]",
url="https://github.com/ysde/grafana-backup-tool",
entry_points={
'console_scripts': [
'grafana-backup = grafana_backup.cli:main'
]
},
packages=find_packages(),
install_requires=requires,
package_data={'': ['conf/*']},
)