forked from community-libs/vaurien
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (32 loc) · 1.14 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
from setuptools import setup, find_packages
from vaurien import __version__
install_requires = ['cornice', 'gevent', 'statsd-client', 'vaurienclient',
'greenlet', 'http-parser']
try:
import argparse # NOQA
except ImportError:
install_requires.append('argparse')
with open('README.rst') as f:
README = f.read()
classifiers = ["Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 1 - Planning"]
setup(name='vaurien',
version=__version__,
packages=find_packages(),
description=("TCP Chaos Proxy"),
long_description=README,
license='APLv2',
author="Mozilla Foundation & contributors",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
tests_require=install_requires + ['nose', 'requests', 'webtest'],
test_suite='nose.collector',
entry_points="""
[console_scripts]
vaurien = vaurien.run:main
meta-vaurien = vaurien.metaserver:main
""")