forked from dlamotte/statsd-ostools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 732 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 732 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
30
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'setproctitle==1.1.6',
'statsd>=1.0.0',
]
setup(
name='statsd-ostools',
version='0.3',
author='Dan LaMotte',
author_email='lamotte85@gmail.com',
url='https://github.com/dlamotte/statsd-ostools',
description='Tools for sending OS performance data to statsd',
long_description=open('README.md').read(),
packages=find_packages('.'),
zip_safe=False,
install_requires=install_requires,
#tests_require=[],
license='',
include_package_data=True,
entry_points={
'console_scripts': [
'statsd-ostools = statsd_ostools.cmd:main'
],
},
classifiers=[],
)