-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.cfg
52 lines (46 loc) · 1.34 KB
/
setup.cfg
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
[metadata]
name = har2locust
license_file = LICENSE
description = Developer friendly load testing framework
authors =
"CyberW <[email protected]>"
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Topic :: Software Development :: Testing :: Traffic Generation
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Intended Audience :: Developers
Intended Audience :: System Administrators
Topic :: Software Development :: Testing
Topic :: Software Development :: Testing :: Traffic Generation
Topic :: System :: Distributed Computing
[options]
packages = find:
include_package_data = true
zip_safe = false
python_requires = >= 3.9
install_requires =
locust >= 2.14.0
ruff
[options.packages.find]
exclude =
tests
[options.entry_points]
console_scripts =
har2locust = har2locust.__main__:__main__
[mypy]
# missing type stubs
ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True
[mypy-locust.dispatch]
no_strict_optional = True