-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 910 Bytes
/
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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm>=8.1.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "dread-mod-loader"
requires-python = ">= 3.12"
dependencies = [
"open-dread-rando>=2.14.0",
"pyside6>=6.8.0",
"pyqtdarktheme-fork>=2.3.2"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest>=8.3.3",
"pytest-qt>=4.4.0",
"pyinstaller>=6.11.0",
"pre-commit>=4.0.1",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_file = "src/dread_mod_loader/version.py"
[tool.ruff]
line-length = 120
lint.select = ["F", "E", "W", "I", "UP"]
[tool.coverage.run]
omit = [
# pyside imports these from a zip file, which causes
# coverage to think they exist when they really don't
# see https://github.com/nedbat/coveragepy/issues/1392
"shibokensupport/*",
"pyscript",
"signature_bootstrap.py",
]