forked from tarekziade/boom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (36 loc) · 1.36 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
from setuptools import setup, find_packages
from boom import __version__
import sys
install_requires = ['gevent', 'requests>=2.3.0']
if sys.version_info < (2, 7):
install_requires += ['argparse']
description = ''
for file_ in ('README', 'CHANGES', 'CONTRIBUTORS'):
with open('%s.rst' % file_) as f:
description += f.read() + '\n\n'
classifiers = ["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"]
setup(name='boom',
version=__version__,
url='https://github.com/tarekziade/boom',
packages=find_packages(),
long_description=description,
description="Simple HTTP Load tester",
author="Tarek Ziade",
author_email="tarek@ziade.org",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
test_suite='unittest2.collector',
entry_points="""
[console_scripts]
boom = boom.boom:main
""")