-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.04 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
[build-system]
requires = [
"setuptools~=75.6.0",
"wheel~=0.45.1",
"packaging~=24.0",
"cython>=0.29.1,<=3.0.11",
'kivy_deps.gstreamer_dev~=0.3.3; sys_platform == "win32"',
'kivy_deps.sdl2_dev~=0.8.0; sys_platform == "win32"',
'kivy_deps.glew_dev~=0.3.1; sys_platform == "win32"',
'kivy_deps.gstreamer~=0.3.3; sys_platform == "win32"',
'kivy_deps.sdl2~=0.8.0; sys_platform == "win32"',
'kivy_deps.glew~=0.3.1; sys_platform == "win32"',
]
[tool.pytest.ini_options]
addopts = "--benchmark-skip --benchmark-warmup=on --benchmark-warmup-iterations=5 --benchmark-disable-gc --benchmark-name=short --benchmark-sort=mean --benchmark-group-by=fullfunc --benchmark-storage=.benchmarks-kivy --benchmark-save=kivy"
markers = "incremental: mark a test as incremental."
[tool.ruff]
exclude = [
"__pycache__",
".tox",
".git/",
"doc/",
"build/",
".eggs/",
"venv/",
]
lint.extend-ignore = [
"E402",
"E722",
"E731",
"E741",
"F401",
"F841",
]
lint.select = [
"E",
"F",
"W",
]