-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
40 lines (34 loc) · 1.04 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
from setuptools import setup, find_packages
from salvo import __version__
install_requires = ["molotov"]
description = ""
for file_ in ("README", "CHANGES", "CONTRIBUTORS"):
with open("%s.rst" % file_) as f:
description += f.read() + "\n\n"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
setup(
name="salvo",
version=__version__,
url="https://github.com/tarekziade/salvo",
packages=find_packages(),
long_description=description,
description="Simple HTTP Load tester",
author="Tarek Ziade",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
test_suite="unittest.collector",
entry_points="""
[console_scripts]
salvo = salvo.run:console_main
""",
)