-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 788 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 788 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='zerorpc-statsd',
version='0.1.0',
description='StatsD Middleware for ZeroRPC.',
author='Andrea Luzzardi',
author_email='andrea@luzzardi.com',
url='https://github.com/aluzzardi/zerorpc-statsd',
packages=['zerorpc_statsd'],
install_requires=[
'statsd>=0.5.1'
],
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)