-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
71 lines (66 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[metadata]
name = mite
description = A Python Performance Testing Framework
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/sky-uk/mite/
python_requires = >=3.9
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: POSIX :: Linux
# TODO - Update (or remove) the Selenium version when migrating to v4. The version is explicitly defined
# as less than 4 as here are backward compatibility issues with Rust from version 4 on
[options]
install_requires =
acurl
bs4
docopt
flask
msgpack
nanomsg
prettytable
pyzmq
selenium<4
uvloop
websockets
setup_requires = pytest-runner
packages = find:
[options.extras_require]
amqp =
aio_pika
kafka =
aiokafka
finagle =
thrift
selenium =
selenium
selenium_wire = selenium-wire==4.6.5
[options.entry_points]
console_scripts =
mite = mite.__main__:main
mite_stats =
mite = mite.stats:_MITE_STATS
mite_finagle = mite_finagle.stats:STATS
mite_http = mite_http.stats:STATS
mite_selenium = mite_selenium.stats:STATS
mite_kafka = mite_kafka.stats:_KAFKA_STATS
[options.packages.find]
exclude =
acurl
[flake8]
ignore =
# Line too long
E501
# Line break before binary operator...black handles this for us
W503
# Lambda assignment
E731
# Allegedly ambiguous variable names
E741
exclude = .git,build,dist,.eggs,.tox
max-line-length = 88