forked from libtcod/python-tcod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 798 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
[build-system]
requires = ["setuptools>=57.0.0", "wheel", "cffi~=1.13", "pycparser>=2.14"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ["py37"]
[tool.isort]
profile = "black"
py_version = "37"
skip_gitignore = true
line_length = 120
[tool.pytest.ini_options]
minversion = "6.0"
required_plugins = ["pytest-cov"]
testpaths = ["tcod/", "tests/", "docs/"]
addopts = [
"--doctest-modules",
"--doctest-glob='*.rst'",
"--cov=tcod",
"--capture=sys",
"--ignore=tcod/__pyinstaller",
]
log_file_level = "DEBUG"
faulthandler_timeout = 5
filterwarnings = [
"ignore::DeprecationWarning:tcod.libtcodpy",
"ignore::PendingDeprecationWarning:tcod.libtcodpy",
"ignore:This class may perform poorly and is no longer needed.::tcod.map",
]