-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (38 loc) · 1.36 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
34
35
36
37
38
39
40
from setuptools import setup
setup(
name='pystatsd',
version='1.0.0',
description='Python statsd server.',
long_description="Python statsd server",
url="https://github.com/bdastur/utils",
author="Behzad Dastur",
author_email="[email protected]",
license='Apache Software License',
install_requires=[
'kafka-python',
'PyYAML'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'License :: Apache Software License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
],
entry_points={
'console_scripts': [
'pystatsd = pystatsd.stats_server:main'
]
},
keywords='statsd',
packages=["pystatsd"],
data_files=[('/etc/pystatsd', ['pystatsd/etc/pystats/pystatsd.conf']),
('/opt/pystatsd', ['pystatsd/opt/stats_server_stop']),
('/usr/lib/systemd/system', ['pystatsd/etc/init/pystatsd.service']),
('/etc/init', ['pystatsd/etc/init/pystatsd.conf'])]
)