fix setup.py

This commit is contained in:
Andy McKay 2012-05-09 11:38:02 -07:00
parent ad9ccb6db1
commit 2ec1b01c3d
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,4 @@
include LICENSE.rst include LICENSE.rst
include README.rst include README.rst
recursive-include django_statsd/templates * recursive-include django_statsd/templates *
recursive-include django_statsd/static *

View File

@ -16,6 +16,10 @@ Credits:
Changes Changes
------- -------
0.3.3:
- fix setup.py to include loggers etc
0.3.2: 0.3.2:
- update to work with latest Django Debug Toolbar - update to work with latest Django Debug Toolbar

View File

@ -5,7 +5,7 @@ from setuptools import setup
setup( setup(
# Because django-statsd was taken, I called this django-statsd-mozilla. # Because django-statsd was taken, I called this django-statsd-mozilla.
name='django-statsd-mozilla', name='django-statsd-mozilla',
version='0.3.2', version='0.3.3',
description='Django interface with statsd', description='Django interface with statsd',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
author='Andy McKay', author='Andy McKay',
@ -14,7 +14,9 @@ setup(
install_requires=['statsd'], install_requires=['statsd'],
packages=['django_statsd', packages=['django_statsd',
'django_statsd/patches', 'django_statsd/patches',
'django_statsd/clients'], 'django_statsd/clients',
'django_statsd/loggers',
'django_statsd/management'],
url='https://github.com/andymckay/django-statsd', url='https://github.com/andymckay/django-statsd',
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,