forked from mosquito/debx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (83 loc) · 2.21 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (83 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "debx"
version = "0.2.12"
description = "Minimal Python library to programmatically construct and inspect Debian .deb packages"
readme = "README.md"
authors = [
{ name = "Dmitry Orlov", email = "me@mosquito.su" }
]
license = "MIT"
license-files = ["COPYING"]
requires-python = ">=3.10"
keywords = [
"administrator",
"apt",
"ar",
"archive",
"automation",
"build",
"cross-platform",
"deb",
"debian",
"development",
"devops",
"dpkg",
"infrastructure",
"library",
"linux",
"macos",
"package",
"packaging",
"system",
"tool",
"windows",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
"Typing :: Typed",
]
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coveralls>=4.0.2",
"markdown-pytest>=0.3.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.10",
]
[project.urls]
"Homepage" = "https://github.com/mosquito/debx"
"Repository" = "https://github.com/mosquito/debx"
"Issues" = "https://github.com/mosquito/debx/issues"
"Documentation" = "https://github.com/mosquito/debx/wiki"
[project.scripts]
"debx" = "debx.__main__:main"
[tool.coverage.run]
branch = true
source = ["debx"]
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:",
]