-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
30 lines (28 loc) · 1.03 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="invokust",
version="0.77",
author="Max Williams",
author_email="[email protected]",
description="A small wrapper for locust to allow running load tests from within Python or on AWS Lambda",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FutureSharks/invokust",
download_url="https://github.com/FutureSharks/invokust/archive/0.77.tar.gz",
license="MIT",
scripts=["invokr.py"],
packages=[
"invokust",
"invokust.aws_lambda",
],
install_requires=["locust>=2.15.0", "boto3", "pyzmq", "numpy"],
keywords=["testing", "loadtest", "lambda", "locust"],
classifiers=[
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Programming Language :: Python :: 3.7",
],
)