forked from wolph/django-statsd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 811 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
import os
from setuptools import setup
if os.path.isfile('README.rst'):
long_description = open('README.rst').read()
else:
long_description = 'See http://pypi.python.org/pypi/django-statsd/'
setup(
name = 'django-statsd',
version = '1.5',
author = 'Rick van Hattem',
author_email = '[email protected]',
description = '''django-statsd is a django app that submits query and
view durations to Etsy's statsd.''',
url='https://github.com/WoLpH/django-statsd',
license = 'BSD',
packages=['django_statsd'],
long_description=long_description,
test_suite='nose.collector',
setup_requires=['nose'],
tests_require=['django'],
install_requires=['python-statsd>=1.2'],
classifiers=[
'License :: OSI Approved :: BSD License',
],
)