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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 8):
raise ValueError("Requires Python 3.8 or superior")
from molotov import __version__ # NOQA
install_requires = [
"aiohttp",
"aiodogstatsd",
"multiprocess",
"humanize",
"prompt_toolkit",
"grpcio",
]
description = ""
for file_ in ("README", "CHANGELOG"):
with open("%s.rst" % file_) as f:
description += f.read() + "\n\n"
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
setup(
name="molotov",
version=__version__,
url="https://molotov.readthedocs.io",
packages=find_packages(),
long_description=description.strip(),
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
""",
)
|