-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (28 loc) · 933 Bytes
/
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
from setuptools import setup, find_packages
from statsdlog import __version__ as version
install_requires = []
try:
import eventlet
except ImportError:
install_requires.append("eventlet")
name = "statsdlog"
setup(
name = name,
version = version,
author = "Florian Hines",
author_email = "syn@ronin.io",
description = "generate statsd events by monitoring a syslog udp stream",
license = "Apache License, (2.0)",
keywords = "statsd syslog graphite",
url = "http://github.com/pandemicsyn/statsdlog",
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Environment :: No Input/Output (Daemon)',
],
install_requires=install_requires,
scripts=['bin/statsdlog-server'],
)