-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
108 lines (99 loc) · 2.49 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
103
104
105
106
107
108
[project]
name = "pydantic-pkgr"
version = "0.5.4"
description = "System package manager APIs in strongly typed Python"
authors = [
{name = "Nick Sweeting", email = "[email protected]"},
]
requires-python = ">=3.10"
license = {text = "MIT"}
# platform = "py3-none-any"
# packages = [
# { include = "pydantic_pkgr" },
# ]
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 = [
"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 = [
"pydantic-pkgr[pyinfra,ansible]",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"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 = "pydantic_pkgr"
python_version = "3.10"
warn_return_any = "True"
warn_unused_configs = "True"
plugins = [
"mypy_django_plugin.main",
]
[tool.pyright]
include = ["pydantic_pkgr"]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/migrations",
]
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.10"
pythonPlatform = "Linux"
[project.urls]
Homepage = "https://github.com/ArchiveBox/pydantic-pkgr"
Source = "https://github.com/ArchiveBox/pydantic-pkgr"
Documentation = "https://github.com/ArchiveBox/pydantic-pkgr"
"Bug Tracker" = "https://github.com/ArchiveBox/pydantic-pkgr/issues"
Changelog = "https://github.com/ArchiveBox/pydantic-pkgr/releases"
Donate = "https://github.com/ArchiveBox/ArchiveBox/wiki/Donations"