-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (47 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project]
name = "bygg"
dynamic = ["dependencies", "version"]
# Replace the line above with the next two lines to use a static version number, e.g. if you don't
# have the full git repo available:
# dynamic = ["dependencies"]
# version = "0.0.0.dev0"
authors = [{ name = "Rikard Gillemyr", email = "[email protected]" }]
description = "A small build system"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
bygg = "bygg.main:main"
[project.urls]
"Homepage" = "https://github.com/rikardg/bygg"
"Bug Tracker" = "https://github.com/rikardg/bygg/issues"
[tool.pyright]
include = ["src/bygg", "tests"]
[tool.pytest.ini_options]
addopts = ["-vv", "--import-mode=importlib", "tests/"]
markers = [
"digest: Tests for digest functionality.",
"scheduler: Tests for the scheduler.",
]
[tool.ruff]
exclude = ["_version.py"]
[tool.ruff.lint]
extend-select = ["I", "UP006"]
ignore = ["E501"]
[tool.ruff.lint.isort]
order-by-type = true
force-sort-within-sections = true