-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (45 loc) · 1002 Bytes
/
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
[metadata]
name = slowroll
description = Configuration slowly applied to clients over time
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://github.com/python-packaging/slowroll
author = Tim Hatch
author_email = [email protected]
[options]
packages = slowroll
setup_requires =
setuptools_scm
setuptools >= 38.3.0
install_requires =
deltaman
python_requires = >=3.8
include_package_data = true
[check]
metadata = true
strict = true
[coverage:run]
branch = True
include = slowroll/*
omit = slowroll/tests/*
[coverage:report]
fail_under = 82
precision = 1
show_missing = True
skip_covered = True
[mypy]
ignore_missing_imports = True
[tox:tox]
envlist = py38, py39, py310, py311, py312
[testenv]
deps = -rrequirements-dev.txt
allowlist_externals =
make
commands =
make test
setenv =
py{37,38,39,310,311,312}: COVERAGE_FILE={envdir}/.coverage
[flake8]
ignore = E203, E231, E266, E302, E501, W503
max-line-length = 88