pkg-about 2.0.7__tar.gz → 2.0.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pkg_about-2.0.7 → pkg_about-2.0.8}/CHANGES.rst +2 -1
- {pkg_about-2.0.7 → pkg_about-2.0.8}/LICENSE +1 -1
- {pkg_about-2.0.7 → pkg_about-2.0.8}/PKG-INFO +8 -6
- {pkg_about-2.0.7 → pkg_about-2.0.8}/README.rst +1 -1
- {pkg_about-2.0.7 → pkg_about-2.0.8}/pyproject.toml +8 -7
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about.egg-info/PKG-INFO +8 -6
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about.egg-info/requires.txt +4 -3
- {pkg_about-2.0.7 → pkg_about-2.0.8}/.readthedocs.yml +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/MANIFEST.in +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/docs/CHANGES.rst +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/docs/README.rst +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/docs/_static/.keep +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/docs/_templates/.keep +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/docs/conf.py +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/docs/index.rst +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/setup.cfg +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about/__about__.py +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about/__init__.py +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about/_about.py +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about/py.typed +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about.egg-info/SOURCES.txt +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about.egg-info/dependency_links.txt +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about.egg-info/top_level.txt +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/src/pkg_about.egg-info/zip-safe +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/tests/__init__.py +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/tests/__main__.py +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/tests/data/setup.cfg +0 -0
- {pkg_about-2.0.7 → pkg_about-2.0.8}/tests/test_main.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
2.0.
|
|
4
|
+
2.0.8 (2025-11-30)
|
|
5
5
|
------------------
|
|
6
6
|
- | Now about() and about_from_setup() return an instance of the adict
|
|
7
7
|
| dictionary with about info (but backward compatibility is preserved).
|
|
@@ -14,6 +14,7 @@ Changelog
|
|
|
14
14
|
| email.utils.getaddresses() and email.utils.parseaddr().
|
|
15
15
|
| Thank you! https://github.com/hedesandxlii
|
|
16
16
|
- Mark the package as typed.
|
|
17
|
+
- Copyright year update.
|
|
17
18
|
- Add tox's tool.tox.env.cleanup testenv.
|
|
18
19
|
- Setup (dependencies) update.
|
|
19
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pkg_about
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Shares Python package metadata at runtime.
|
|
5
5
|
Author-email: Adam Karpierz <adam@karpierz.net>
|
|
6
6
|
Maintainer-email: Adam Karpierz <adam@karpierz.net>
|
|
@@ -32,18 +32,19 @@ Requires-Python: <4.0.0,>=3.10.0
|
|
|
32
32
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
33
|
License-File: LICENSE
|
|
34
34
|
Requires-Dist: setuptools>=80.9.0
|
|
35
|
+
Requires-Dist: typing-extensions>=4.15.0
|
|
35
36
|
Requires-Dist: packaging>=25.0.0
|
|
36
37
|
Requires-Dist: tomli>=2.3.0; python_version < "3.11"
|
|
37
38
|
Provides-Extra: doc
|
|
38
|
-
Requires-Dist:
|
|
39
|
+
Requires-Dist: sphinx>=8.1.3; extra == "doc"
|
|
39
40
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx-toolbox>=4.0.0; extra == "doc"
|
|
41
42
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
42
43
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
44
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.2; extra == "doc"
|
|
44
45
|
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
|
|
45
46
|
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.8; extra == "doc"
|
|
47
48
|
Provides-Extra: test
|
|
48
49
|
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
50
|
Requires-Dist: rich>=14.2.0; extra == "test"
|
|
@@ -135,7 +136,7 @@ Authors
|
|
|
135
136
|
|
|
136
137
|
.. |package| replace:: pkg_about
|
|
137
138
|
.. |package_bold| replace:: **pkg_about**
|
|
138
|
-
.. |copyright| replace:: Copyright (c) 2020-
|
|
139
|
+
.. |copyright| replace:: Copyright (c) 2020-2026 Adam Karpierz
|
|
139
140
|
.. |respository| replace:: https://github.com/karpierz/pkg_about.git
|
|
140
141
|
.. _Development page: https://github.com/karpierz/pkg_about
|
|
141
142
|
.. _PyPI record: https://pypi.org/project/pkg-about/
|
|
@@ -144,7 +145,7 @@ Authors
|
|
|
144
145
|
Changelog
|
|
145
146
|
=========
|
|
146
147
|
|
|
147
|
-
2.0.
|
|
148
|
+
2.0.8 (2025-11-30)
|
|
148
149
|
------------------
|
|
149
150
|
- | Now about() and about_from_setup() return an instance of the adict
|
|
150
151
|
| dictionary with about info (but backward compatibility is preserved).
|
|
@@ -157,6 +158,7 @@ Changelog
|
|
|
157
158
|
| email.utils.getaddresses() and email.utils.parseaddr().
|
|
158
159
|
| Thank you! https://github.com/hedesandxlii
|
|
159
160
|
- Mark the package as typed.
|
|
161
|
+
- Copyright year update.
|
|
160
162
|
- Add tox's tool.tox.env.cleanup testenv.
|
|
161
163
|
- Setup (dependencies) update.
|
|
162
164
|
|
|
@@ -83,7 +83,7 @@ Authors
|
|
|
83
83
|
|
|
84
84
|
.. |package| replace:: pkg_about
|
|
85
85
|
.. |package_bold| replace:: **pkg_about**
|
|
86
|
-
.. |copyright| replace:: Copyright (c) 2020-
|
|
86
|
+
.. |copyright| replace:: Copyright (c) 2020-2026 Adam Karpierz
|
|
87
87
|
.. |respository| replace:: https://github.com/karpierz/pkg_about.git
|
|
88
88
|
.. _Development page: https://github.com/karpierz/pkg_about
|
|
89
89
|
.. _PyPI record: https://pypi.org/project/pkg-about/
|
|
@@ -7,7 +7,7 @@ requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.32.0']
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'pkg_about'
|
|
10
|
-
version = '2.0.
|
|
10
|
+
version = '2.0.8'
|
|
11
11
|
description = 'Shares Python package metadata at runtime.'
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz', email = 'adam@karpierz.net' },
|
|
@@ -45,21 +45,22 @@ requires-python = '>=3.10.0,<4.0.0'
|
|
|
45
45
|
dependencies = [
|
|
46
46
|
# mandatory
|
|
47
47
|
'setuptools>=80.9.0',
|
|
48
|
+
'typing-extensions>=4.15.0',
|
|
48
49
|
'packaging>=25.0.0',
|
|
49
50
|
'tomli>=2.3.0 ; python_version < "3.11"',
|
|
50
51
|
# others
|
|
51
52
|
]
|
|
52
53
|
dynamic = ['readme']
|
|
53
54
|
optional-dependencies.'doc' = [
|
|
54
|
-
'
|
|
55
|
+
'sphinx>=8.1.3',
|
|
55
56
|
'sphinx-autodoc-typehints>=3.0.1',
|
|
56
57
|
'sphinx-toolbox>=4.0.0',
|
|
57
58
|
'sphinx-tabs>=3.4.5', # don't touch! sphinx-toolbox requires <3.4.7
|
|
58
59
|
'sphinx-copybutton>=0.5.2',
|
|
59
|
-
'sphinxcontrib-spelling>=8.0.
|
|
60
|
+
'sphinxcontrib-spelling>=8.0.2',
|
|
60
61
|
'sphinx-lint>=1.0.2',
|
|
61
62
|
'restructuredtext-lint>=2.0.2',
|
|
62
|
-
'nbsphinx>=0.9.
|
|
63
|
+
'nbsphinx>=0.9.8',
|
|
63
64
|
]
|
|
64
65
|
optional-dependencies.'test' = [
|
|
65
66
|
'deepdiff>=8.6.1',
|
|
@@ -254,7 +255,7 @@ deps = [
|
|
|
254
255
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
255
256
|
'coverage>=7.12.0',
|
|
256
257
|
'covdefaults>=2.3.0',
|
|
257
|
-
'diff-cover>=9.7.
|
|
258
|
+
'diff-cover>=9.7.2',
|
|
258
259
|
]
|
|
259
260
|
|
|
260
261
|
[tool.tox.env.'docs']
|
|
@@ -309,7 +310,7 @@ commands = [
|
|
|
309
310
|
extras = []
|
|
310
311
|
deps = [
|
|
311
312
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
312
|
-
'mypy>=1.
|
|
313
|
+
'mypy>=1.19.0',
|
|
313
314
|
'mypy_extensions>=1.1.0',
|
|
314
315
|
'types-setuptools>=80.9.0.20250822',
|
|
315
316
|
]
|
|
@@ -324,7 +325,7 @@ deps = [
|
|
|
324
325
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
325
326
|
'flake8>=7.3.0',
|
|
326
327
|
'flake8-in-file-ignores>=0.3.0',
|
|
327
|
-
'flake8-pyproject>=1.2.
|
|
328
|
+
'flake8-pyproject>=1.2.4',
|
|
328
329
|
'flake8-docstrings>=1.7.0',
|
|
329
330
|
'pep8-naming>=0.15.1',
|
|
330
331
|
'flake8-builtins>=3.1.0',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pkg_about
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Shares Python package metadata at runtime.
|
|
5
5
|
Author-email: Adam Karpierz <adam@karpierz.net>
|
|
6
6
|
Maintainer-email: Adam Karpierz <adam@karpierz.net>
|
|
@@ -32,18 +32,19 @@ Requires-Python: <4.0.0,>=3.10.0
|
|
|
32
32
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
33
|
License-File: LICENSE
|
|
34
34
|
Requires-Dist: setuptools>=80.9.0
|
|
35
|
+
Requires-Dist: typing-extensions>=4.15.0
|
|
35
36
|
Requires-Dist: packaging>=25.0.0
|
|
36
37
|
Requires-Dist: tomli>=2.3.0; python_version < "3.11"
|
|
37
38
|
Provides-Extra: doc
|
|
38
|
-
Requires-Dist:
|
|
39
|
+
Requires-Dist: sphinx>=8.1.3; extra == "doc"
|
|
39
40
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx-toolbox>=4.0.0; extra == "doc"
|
|
41
42
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
42
43
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
44
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.2; extra == "doc"
|
|
44
45
|
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
|
|
45
46
|
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.8; extra == "doc"
|
|
47
48
|
Provides-Extra: test
|
|
48
49
|
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
50
|
Requires-Dist: rich>=14.2.0; extra == "test"
|
|
@@ -135,7 +136,7 @@ Authors
|
|
|
135
136
|
|
|
136
137
|
.. |package| replace:: pkg_about
|
|
137
138
|
.. |package_bold| replace:: **pkg_about**
|
|
138
|
-
.. |copyright| replace:: Copyright (c) 2020-
|
|
139
|
+
.. |copyright| replace:: Copyright (c) 2020-2026 Adam Karpierz
|
|
139
140
|
.. |respository| replace:: https://github.com/karpierz/pkg_about.git
|
|
140
141
|
.. _Development page: https://github.com/karpierz/pkg_about
|
|
141
142
|
.. _PyPI record: https://pypi.org/project/pkg-about/
|
|
@@ -144,7 +145,7 @@ Authors
|
|
|
144
145
|
Changelog
|
|
145
146
|
=========
|
|
146
147
|
|
|
147
|
-
2.0.
|
|
148
|
+
2.0.8 (2025-11-30)
|
|
148
149
|
------------------
|
|
149
150
|
- | Now about() and about_from_setup() return an instance of the adict
|
|
150
151
|
| dictionary with about info (but backward compatibility is preserved).
|
|
@@ -157,6 +158,7 @@ Changelog
|
|
|
157
158
|
| email.utils.getaddresses() and email.utils.parseaddr().
|
|
158
159
|
| Thank you! https://github.com/hedesandxlii
|
|
159
160
|
- Mark the package as typed.
|
|
161
|
+
- Copyright year update.
|
|
160
162
|
- Add tox's tool.tox.env.cleanup testenv.
|
|
161
163
|
- Setup (dependencies) update.
|
|
162
164
|
|
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
setuptools>=80.9.0
|
|
2
|
+
typing-extensions>=4.15.0
|
|
2
3
|
packaging>=25.0.0
|
|
3
4
|
|
|
4
5
|
[:python_version < "3.11"]
|
|
5
6
|
tomli>=2.3.0
|
|
6
7
|
|
|
7
8
|
[doc]
|
|
8
|
-
|
|
9
|
+
sphinx>=8.1.3
|
|
9
10
|
sphinx-autodoc-typehints>=3.0.1
|
|
10
11
|
sphinx-toolbox>=4.0.0
|
|
11
12
|
sphinx-tabs>=3.4.5
|
|
12
13
|
sphinx-copybutton>=0.5.2
|
|
13
|
-
sphinxcontrib-spelling>=8.0.
|
|
14
|
+
sphinxcontrib-spelling>=8.0.2
|
|
14
15
|
sphinx-lint>=1.0.2
|
|
15
16
|
restructuredtext-lint>=2.0.2
|
|
16
|
-
nbsphinx>=0.9.
|
|
17
|
+
nbsphinx>=0.9.8
|
|
17
18
|
|
|
18
19
|
[test]
|
|
19
20
|
deepdiff>=8.6.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|