~fgallina/django-statsd/sync

9 by Andy McKay
fix docs
1
from setuptools import setup
2 by Andy McKay
clients, middleware and tests
2
3
4
setup(
8 by Andy McKay
Packaging fun
5
    # Because django-statsd was taken, I called this django-statsd-mozilla.
6
    name='django-statsd-mozilla',
81 by Andy McKay
bump version
7
    version='0.3.12',
9 by Andy McKay
fix docs
8
    description='Django interface with statsd',
8 by Andy McKay
Packaging fun
9
    long_description=open('README.rst').read(),
2 by Andy McKay
clients, middleware and tests
10
    author='Andy McKay',
11
    author_email='andym@mozilla.com',
12
    license='BSD',
66.1.1 by James Socol
Update for statsd >= 2.0
13
    install_requires=['statsd>=2.0.0'],
8 by Andy McKay
Packaging fun
14
    packages=['django_statsd',
15
              'django_statsd/patches',
31 by Andy McKay
fix setup.py
16
              'django_statsd/clients',
17
              'django_statsd/loggers',
41.2.2 by Chris Streeter
Include management commands.
18
              'django_statsd/management',
19
              'django_statsd/management/commands'],
8 by Andy McKay
Packaging fun
20
    url='https://github.com/andymckay/django-statsd',
50 by Andy McKay
add in a nose client
21
    entry_points={
22
        'nose.plugins.0.10': [
23
            'django_statsd = django_statsd:NoseStatsd'
24
        ]
25
    },
8 by Andy McKay
Packaging fun
26
    include_package_data=True,
27
    zip_safe=False,
2 by Andy McKay
clients, middleware and tests
28
    classifiers=[
29
        'Intended Audience :: Developers',
30
        'Natural Language :: English',
31
        'Operating System :: OS Independent',
32
        'Framework :: Django'
50 by Andy McKay
add in a nose client
33
    ]
34
)