-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
58 lines (50 loc) · 1.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
try:
__import__('multiprocessing')
except:
pass
if 'nosetests' in sys.argv:
setup_requires = ['nose']
else:
setup_requires = []
tests_require = [
'mock',
'nose',
'pycassa',
'pylibmc',
'redis',
'riak',
'thoonk',
'unittest2',
]
dependency_links = [
'https://github.com/andyet/thoonk.py/tarball/master#egg=thoonk',
]
install_requires = [
]
setup(
name='nydus',
version='0.11.0',
author='DISQUS',
author_email='opensource@disqus.com',
url='https://github.com/disqus/nydus',
description='Connection utilities',
packages=find_packages(exclude=('tests',)),
zip_safe=False,
setup_requires=setup_requires,
install_requires=install_requires,
dependency_links=dependency_links,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='nose.collector',
include_package_data=True,
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)