-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.17 KB
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
[project]
name = "pixpy"
version = "0.2.0"
description = "Graphics library"
authors = [
{name = "Jonas Minnberg", email="sasq64@gmail.com"}
]
license = "MIT"
readme = "docs/index.md"
requires-python = ">=3.9"
[project.urls]
repository = "https://github.com/sasq64/pix"
documentation = "https://pixpy.readthedocs.org"
[build-system]
requires = [ "scikit-build-core>=0.11" ]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
sdist.exclude = ["NOTES.md", "data/", "examples/"]
minimum-version = "build-system.requires"
cmake.args=[
"--no-warn-unused-cli",
"-DCMAKE_BUILD_TYPE=Release",
"-DPYTHON_MODULE=ON",
"-DMACOSX_DEPLOYMENT_TARGET=10.15",
]
[tool.black]
line-length = 80
[tool.coverage.run]
source = ["pixide"]
omit = [
"*/tests/*",
"*/test_*",
"*/__pycache__/*",
"*/build/*",
"*/stubs/*"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError"
]
[tool.coverage.html]
directory = "htmlcov"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"