-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
70 lines (67 loc) · 1.57 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
[metadata]
name = metricq-wizard-backend
author = TU Dresden
description = The server backend for the wizard
long_description = file: README.md
long_description_content_type = text/markdown
url = https://example.com/metricq-example
license = GPL3
license_file = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3
[options]
packages = find:
python_requires = >=3.10
setup_requires =
setuptools_scm
install_requires =
metricq ~= 5.2
aiohttp~=3.7
aiohttp-cors~=0.7
aiohttp-jinja2~=1.2
aiohttp-session[secure]~=2.9
aiohttp-swagger~=1.0
pydantic~=1.0
aiocouch~=3.0
aiocache
[options.extras_require]
lint =
black
check-manifest
flake8 >= 3.8,< 7.0
flake8-bugbear
isort ~= 5.0
pre-commit>=2.9.2
typing =
mypy
dev =
%(typing)s
%(lint)s
aiohttp-debugtoolbar~=0.6
aiohttp-devtools~=1.0
[flake8]
# Tell flake8 which packages are part of your application:
application-import-names = metricq_wizard_backend
# This is the black default:
max-line-length = 88
extend-exclude =
.pytest_cache,
# Add additional directories here to exclude from checking
...
# Rules to check for
select =
# Regular flake8 rules
C, E, F, W
# flake8-bugbear rules
B
# pep8-naming rules
N
# Rules to ignore. Add a reason why.
ignore =
# E203: whitespace before ':' (not PEP8 compliant)
E203
# E501: line too long (replaced by B950)
E501
# W503: line break before binary operator (not PEP8 compliant)
W503