-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 770 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 770 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "zbx-statsd",
version = "0.4.0",
author = "Sergey Kirillov",
author_email = "sergey.kirillov@gmail.com",
description = ("Clone of Etsy's statsd and Steve Ivy's py-statsd designed to work with Zabbix (http://www.zabbix.com/)."),
url='https://github.com/pistolero/zbx-statsd',
license = "BSD",
packages=['zbxstatsd'],
long_description=read('README.txt'),
install_requires=['argparse', 'zbxsend'],
classifiers=[
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'zbx-statsd = zbxstatsd.server:main',
]
}
)