-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (44 loc) · 1.12 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
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.isort]
line_length = 100
profile = "black"
skip_gitignore = true
src_paths = ["lispyc"]
[tool.pyright]
include = ["lispyc", "tests"]
pythonPlatform = "All"
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
reportImportCycles = "warning"
reportPrivateImportUsage = "warning"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --cov=lispyc --cov=tests --import-mode=importlib"
testpaths = ["tests"]
[tool.coverage.paths]
lispyc = [
"lispyc",
"/home/*/work/lispy/lispy/lispyc",
"/Users/*/work/lispy/lispy/lispyc",
"D:\\*\\lispy\\lispy\\lispyc",
]
tests = [
"tests",
"/home/*/work/lispy/lispy/tests",
"/Users/*/work/lispy/lispy/tests",
"D:\\*\\lispy\\lispy\\tests"
]
[tool.coverage.report]
fail_under = 80
[tool.coverage.run]
branch = true
data_file = "${COVERAGE_DATAFILE-.coverage}"
relative_files = false
source = ["lispyc", "tests"]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
[build-system]
requires = ["setuptools>=46", "setuptools_scm>=6.2", "wheel"]
build-backend = "setuptools.build_meta"