forked from django-statsd/django-statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.13 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
from setuptools import setup
setup(
# Because django-statsd was taken, I called this django-statsd-mozilla.
name='django-statsd-mozilla',
version='0.4.0',
description='Django interface with statsd',
long_description=open('README.rst').read(),
author='Andy McKay',
author_email='[email protected]',
license='BSD',
install_requires=['statsd >= 2.1.2, != 3.2 , <= 4.0'],
packages=['django_statsd',
'django_statsd/patches',
'django_statsd/clients',
'django_statsd/loggers',
'django_statsd/management',
'django_statsd/management/commands'],
url='https://github.com/django-statsd/django-statsd',
entry_points={
'nose.plugins.0.10': [
'django_statsd = django_statsd:NoseStatsd'
]
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
]
)