-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
65 lines (58 loc) · 1.22 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=68", "wheel", "setuptools_scm>=6.2", "versionista>=1.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cdisutils"
dynamic = [
"version",
"description",
"readme",
"requires-python",
"license",
"authors",
"maintainers",
"keywords",
"classifiers",
"urls",
"scripts",
"gui-scripts",
"entry-points",
"dependencies",
"optional-dependencies"
]
[tool.black]
include = '\.pyi?$'
line-length = 98
[tool.coverage.html]
title = "cdisutils coverage report"
directory = "docs/htmlcov"
show_contexts = true
[tool.coverage.run]
branch = true
context = "unit tests"
source = ["cdisutils"]
[tool.isort]
profile = "black"
known_first_party = ["cdisutils"]
[tool.setuptools_scm]
local_scheme = "versionista-local-format"
version_scheme = "versionista-format"
[tool.pytest.ini_options]
minversion = 6.0
# Silence warning by opting in to use pytest 6's new default value
junit_family = "xunit2"
junit_logging = "system-out"
console_output_style = "classic"
log_cli_level = "INFO"
log_cli = "true"
addopts = "-rfE --color=yes --cov=cdisutils --cov-report term"
norecursedirs = [
".git",
".tox",
"dist",
"build"
]
testpaths = [
"tests/unit",
"tests/integration",
]