-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
255 lines (238 loc) Β· 7.36 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
[project]
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
name = "meta-package-manager"
version = "5.19.0"
# Python versions and their status: https://devguide.python.org/versions/
requires-python = ">= 3.10"
description = "π wraps all package managers with a unifying CLI"
authors = [{ name = "Kevin Deldycke", email = "[email protected]" }]
readme = "readme.md"
keywords = [
'CLI',
'apm',
'apt',
'apt-mint',
'atom',
'brew',
'cargo',
'cask',
'choco',
'chocotaley',
'composer',
'cyclonedx',
'dnf',
'emerge',
'flatpak',
'gem',
'homebrew',
'mac app store',
'macos',
'mas',
'node',
'npm',
'opkg',
'package',
'package url',
'pacaur',
'pacman',
'paru',
'php composer',
'pip',
'pipx',
'pkg',
'plugin',
'portage',
'purl',
'ruby',
'rust',
'sbom',
'scoop',
'snap',
'spdx',
'steamcmd',
'uv',
'visual studio code',
'vscode',
'vscodium',
'xbar',
'swiftbar',
'winget',
'yarn',
'yay',
'yum',
'zypper',
]
classifiers = [
# See: https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Packaging',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
'Typing :: Typed',
]
dependencies = [
"boltons ~= 24.0.0",
"click-extra ~= 4.11.1",
"cyclonedx-python-lib [validation] ~= 7.6.0",
"extra-platforms [pytest] ~= 1.4.0",
"more-itertools ~= 10.5.0",
"packageurl-python ~= 0.16.0",
"spdx-tools ~= 0.8.2",
"tabulate [widechars] ~= 0.9.0",
"tomli ~= 2.0.1 ; python_version < '3.11'",
"tomli_w ~= 1.1.0",
"xmltodict ~= 0.14.2",
]
[project.optional-dependencies]
test = [
"click-extra [pytest] ~= 4.11.1",
"coverage [toml] ~= 7.6.0",
"pytest ~= 8.3.1",
"pyyaml ~= 6.0.0",
# More pytest plugins at: https://docs.pytest.org/en/latest/reference/plugin_list.html
"pytest-cov ~= 5.0.0",
"pytest-github-actions-annotate-failures ~= 0.2.0",
"pytest-randomly ~= 3.16.0",
"pytest-xdist [psutil] ~= 3.6.1",
]
typing = [
"types-PyYAML ~= 6.0.12.9",
"types-tabulate ~= 0.9.0.2",
"types-xmltodict ~= 0.14.0.20241009",
]
docs = [
"click-extra [sphinx] ~= 4.11.1",
"furo ~= 2024.8.6",
"myst-parser ~= 4.0.0",
"sphinx ~= 8.1.3",
"sphinx-autodoc-typehints ~= 2.5.0",
"sphinx-click ~= 6.0.0",
"sphinx-copybutton ~= 0.5.2",
"sphinx-design ~= 0.6.0",
"sphinx-issues ~= 5.0.0",
"sphinxcontrib-mermaid ~= 1.0.0",
"sphinxext-opengraph ~= 0.9.0",
"tomli ~= 2.0.1 ; python_version < '3.11'",
]
[project.urls]
"Homepage" = 'https://github.com/kdeldycke/meta-package-manager'
"Documentation" = 'https://kdeldycke.github.io/meta-package-manager'
"Repository" = 'https://github.com/kdeldycke/meta-package-manager'
"Funding" = "https://github.com/sponsors/kdeldycke"
"Issues" = "https://github.com/kdeldycke/meta-package-manager/issues"
"Changelog" = "https://github.com/kdeldycke/meta-package-manager/blob/main/changelog.md"
[project.scripts]
mpm = 'meta_package_manager.__main__:main'
[tool.uv]
package = true
[tool.nuitka]
product-name = "Meta Package Manager"
file-description = "π wraps all package managers with a unifying CLI"
copyright = "Kevin Deldycke <[email protected]> and contributors. Distributed under GPL-2.0-or-later license."
file-version = "5.19.0"
product-version = "5.19.0"
macos-app-icon = "docs/assets/icon.png"
linux-icon = "docs/assets/icon.png"
windows-icon-from-ico = "docs/assets/icon.png"
[tool.mypy]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
pretty = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["boltons.*", "packageurl.*"]
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
addopts = [
"--numprocesses=auto",
"--dist=loadgroup",
# Limit size of the chunks of consecutive tests that xdist submits to workers.
# Setting it to 1 will effectively mean "round-robin distribution".
# Source: https://github.com/pytest-dev/pytest-xdist/issues/855#issuecomment-1344986156
"--maxschedchunk=1",
"--durations=10",
"--cov=meta_package_manager",
"--cov-report=term",
"--cov-report=xml",
# XXX --run-non-destructiveis not required as this is the default behavior.
# We would love to add it to the command line to make sure pytest is properly recognizing it and loads our
# customization from ``./tests/conftest.py``. But because of issue
# https://github.com/pytest-dev/pytest/issues/9311 (see above), it is not currently present in ``addopts``.
# "--run-non-destructive",
]
# Make sure tests that are expected to fail do not resurect and start working all of a sudden.
xfail_strict = true
# https://coverage.readthedocs.io/en/latest/config.html
[tool.coverage.run]
branch = true
[tool.coverage.report]
precision = 2
[tool.bumpversion]
current_version = "5.19.0"
allow_dirty = true
[[tool.bumpversion.files]]
# Update Python package version in any __init__.py file.
glob = "./**/__init__.py"
ignore_missing_version = true
[[tool.bumpversion.files]]
# Update version in bar plugin.
filename = "./meta_package_manager/bar_plugin.py"
[[tool.bumpversion.files]]
# Update version in project section.
filename = "./pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
# Update the version in standard Markdown changelog.
filename = "./changelog.md"
search = "## [{current_version} (unreleased)]("
replace = "## [{new_version} (unreleased)]("
[[tool.bumpversion.files]]
# Update the version in the citation file.
filename = "./citation.cff"
search = "version: {current_version}"
replace = "version: {new_version}"
[[tool.bumpversion.files]]
# Update the release date in the citation file.
filename = "./citation.cff"
regex = true
search = "date-released: \\d{{4}}-\\d{{2}}-\\d{{2}}"
replace = "date-released: {utcnow:%Y-%m-%d}"
[tool.typos]
default.extend-ignore-identifiers-re = [
# error: `ist` should be `is`, `it`, `its`, `sit`, `list`
# --> ./docs/development.md:121:10
# |
# 121 | - [chalk.ist](https://chalk.ist)
# | ^^^
# |
# error: `ist` should be `is`, `it`, `its`, `sit`, `list`
# --> ./docs/development.md:121:29
# |
# 121 | - [chalk.ist](https://chalk.ist)
# | ^^^
# |
"ist",
]