-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1021 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 1021 Bytes
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
#!/usr/bin/env python
try:
# Third-party
from setuptools import setup
except ImportError:
# Standard library
from distutils.core import setup
with open("README.rst") as file:
long_description = file.read()
setup(author="Timid Robot Zehta",
author_email="tim@clockwork.net",
classifiers=["Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Monitoring",
"Topic :: Utilities"],
description=("Graphite-dashgen automates the creation of Graphite "
"dashboards"),
download_url="https://github.com/ClockworkNet/graphite-dashgen/releases",
install_requires=["PyYAML"],
license="MIT License",
long_description=long_description,
name="python-graphite-dashgen",
py_modules=["dashgen"],
url="https://github.com/ClockworkNet/graphite-dashgen",
version="0.1.6",
)