-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.cfg
More file actions
43 lines (36 loc) · 810 Bytes
/
setup.cfg
File metadata and controls
43 lines (36 loc) · 810 Bytes
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
[metadata]
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = Linux
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
exclude =
tests
[tool:pytest]
addopts =
--cov=s2python
--cov-report=html:./unit_test_coverage/
-v tests/unit/
testpaths = tests
[devpi:upload]
# Options for the devpi: PyPI server and packaging tool
# VCS export must be deactivated since we are using setuptools-scm
no_vcs = 1
formats = bdist_wheel
[flake8]
# Some sane defaults for the code style checker flake8
max_line_length = 88
extend_ignore = E203, W503
# ^ Black-compatible
# E203 and W503 have edge cases handled by black
exclude =
.tox
build
dist
.eggs
docs/conf.py