-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.13 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
[build-system]
requires = ["uv_build>=0.9.21,<=1.0.0"]
build-backend = "uv_build"
[project]
name = "mkpkg"
description = "Arch tool to rebuild packages based on package conditions or file triggers"
authors = [{ name = "Gene C", email = "[email protected]" }]
license = "GPL-2.0-or-later"
readme = "README.rst"
keywords = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
]
requires-python = ">=3.13"
version = "8.0.2"
dependencies = []
[project.urls]
Documentation = "https://github.com/gene-git/Arch-mkpkg/Docs"
Issues = "https://github.com/gene-git/Arch-mkpkg/issues"
Source = "https://github.com/gene-git/Arch-mkpkg"
[tool.uv.build-backend]
module-name = 'mkpkg_mod'
module-root = "src"
source-include = [
'/mkpkg_mod',
'/mkpkg_mod/py.typed',
]
source-exclude = [
".pytest_cache",
"__pycache__",
".mypy_cache",
]
[tool.mypy]
check_untyped_defs = true
[[tool.mypy.overrides]]
module = ["pyalpm.vercmp"]
follow_untyped_imports = true