-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (31 loc) · 1.12 KB
/
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
33
from setuptools import find_packages, setup
import statsite
# Get the long description by reading the README
try:
readme_content = open("README.rst").read()
except:
readme_content = ""
setup(name='statsite',
version=statsite.__version__,
description='Statistics server which sends data to Graphite.',
long_description=readme_content,
author='Kiip',
author_email='[email protected]',
maintainer='Kiip',
maintainer_email='[email protected]',
url='https://github.com/kiip/statsite',
keywords=['statsite', 'graphite', 'graph', 'metrics'],
packages=find_packages(exclude=["tests", "tests.*"]),
entry_points={
"console_scripts": ["statsite = statsite.bin.statsite:main"]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration"]
)