-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
102 lines (94 loc) · 2.34 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
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
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "abx-pkg"
version = "0.6.0"
description = "System package manager interfaces with Python type hints"
authors = [
{name = "Nick Sweeting", email = "[email protected]"},
]
requires-python = ">=3.10"
license = {text = "MIT"}
readme = "README.md"
keywords = [
"pydantic",
"packagemanager",
"apt",
"brew",
"pip",
"system",
"dependencies",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
]
dependencies = [
"pip>=24.3.1",
"typing-extensions>=4.11.0",
"platformdirs>=4.3.6",
"pydantic>=2.7.1",
"pydantic-core>=2.18.2",
]
[project.optional-dependencies]
pyinfra = [
'pyinfra>=2.6.1',
]
ansible = [
'ansible>=10.5.0',
'ansible-core>=2.17.5',
'ansible-runner>=2.4.0',
]
all = [
"abx-pkg[pyinfra,ansible]",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"mypy>=1.10.0",
"pyright",
"django>=4.0",
"django-stubs>=5.0.0",
"django-admin-data-views>=0.3.1",
"django-pydantic-field>=0.3.9",
"django-jsonform>=2.22.0",
]
[tool.mypy]
mypy_path = "abx_pkg"
python_version = "3.10"
warn_return_any = "True"
warn_unused_configs = "True"
plugins = [
"mypy_django_plugin.main",
]
[tool.pyright]
include = ["abx_pkg"]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/migrations",
]
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.10"
pythonPlatform = "Linux"
[project.urls]
Homepage = "https://github.com/ArchiveBox/abx-pkg"
Source = "https://github.com/ArchiveBox/abx-pkg"
Documentation = "https://github.com/ArchiveBox/abx-pkg"
"Bug Tracker" = "https://github.com/ArchiveBox/abx-pkg/issues"
Changelog = "https://github.com/ArchiveBox/abx-pkg/releases"
Donate = "https://github.com/ArchiveBox/ArchiveBox/wiki/Donations"