forked from tarekziade/molotov
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 1004 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 1004 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
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
from molotov import __version__
install_requires = ['aiohttp', 'urwid', 'humanize']
description = ''
for file_ in ('README', ):
with open('%s.rst' % file_) as f:
description += f.read() + '\n\n'
classifiers = ["Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 1 - Planning"]
setup(name='molotov',
version=__version__,
url='https://github.com/loads/molotov',
packages=find_packages(),
long_description=description,
description=("Spiffy load testing tool."),
author="Tarek Ziade",
author_email="tarek@ziade.org",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
entry_points="""
[console_scripts]
molotov = molotov.run:main
moloslave = molotov.slave:main
molostart = molotov.quickstart:main
""")