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
38 lines (35 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 843 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
[build-system]
requires = [
"setuptools==60.8.2",
"wheel>=0.37.1",
"cffi>=1.15",
"pycparser>=2.14",
"pcpp==1.30",
]
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",
]