forked from tarekziade/salvo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 982 Bytes
/
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
from setuptools import setup, find_packages
from salvo import __version__
import sys
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.5",
"Programming Language :: Python :: 3.6",
]
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",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
test_suite="unittest.collector",
entry_points="""
[console_scripts]
salvo = salvo.run:main
""",
)