forked from wolph/python-statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 700 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 700 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
import os
import statsd
import setuptools
if os.path.isfile('README.rst'):
long_description = open('README.rst').read()
else:
long_description = 'See http://pypi.python.org/pypi/python-statsd/'
setuptools.setup(
name=statsd.__package_name__,
version=statsd.__version__,
author=statsd.__author__,
author_email=statsd.__author_email__,
description=statsd.__description__,
url=statsd.__url__,
license='BSD',
packages=setuptools.find_packages(exclude=('tests',)),
long_description=long_description,
test_suite='nose.collector',
tests_require=['nose', 'mock', 'coverage'],
classifiers=[
'License :: OSI Approved :: BSD License',
],
)