forked from SvenskaSpel/locust-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (53 loc) · 1.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable=invalid-name
from setuptools import find_packages, setup
setup(
name="locust-plugins",
description="Useful plugins/extensions for Locust",
long_description="""https://github.com/SvenskaSpel/locust-plugins""",
classifiers=[
"Topic :: Software Development :: Testing :: Traffic Generation",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
],
python_requires=">=3.7, <4",
keywords="",
author="Lars Holmberg",
url="https://github.com/SvenskaSpel/locust-plugins",
license="Apache-2.0",
packages=find_packages(exclude=["examples"]),
include_package_data=True,
package_data={"locust_plugins": ["py.typed"]},
zip_safe=False,
install_requires=[
"playwright",
"locust>=2.8.6",
"psycogreen",
"psycopg2-binary",
"websocket-client",
"python-dateutil",
"pymongo",
"confluent-kafka",
"selenium>=4.0.0",
"lxml",
"opencensus-ext-azure",
"paho-mqtt>=1.5.0",
"python-autoviv",
"typing-extensions",
],
scripts=["bin/locust-compose"],
use_scm_version={
"write_to": "locust_plugins/_version.py",
"local_scheme": "no-local-version",
},
setup_requires=["setuptools_scm"],
)