-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
46 lines (40 loc) · 1.11 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
37
38
39
40
41
42
43
44
45
import os
import setuptools
# To prevent importing about and thereby breaking the coverage info we use this
# exec hack
about = {}
with open('statsd/__about__.py') as fp:
exec(fp.read(), about)
if os.path.isfile('README.rst'):
long_description = open('README.rst').read()
else:
long_description = 'See http://pypi.python.org/pypi/python-statsd/'
tests_require = [
'nose',
'coverage',
'mock',
]
docs_require = [
'changelog',
'sphinx>=1.5.0',
]
if __name__ == '__main__':
setuptools.setup(
name=about['__package_name__'],
version=about['__version__'],
author=about['__author__'],
author_email=about['__author_email__'],
description=about['__description__'],
url=about['__url__'],
license='BSD',
packages=setuptools.find_packages(exclude=('docs', 'tests',)),
long_description=long_description,
test_suite='nose.collector',
classifiers=[
'License :: OSI Approved :: BSD License',
],
extras_require={
'docs': docs_require,
'tests': tests_require,
},
)