pkg-about 1.1.5__zip → 1.1.6__zip
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-1.1.5 → pkg_about-1.1.6}/CHANGES.rst +4 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/PKG-INFO +16 -12
- {pkg-about-1.1.5 → pkg_about-1.1.6}/pyproject.toml +26 -26
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about.egg-info/PKG-INFO +16 -12
- pkg_about-1.1.6/src/pkg_about.egg-info/requires.txt +19 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/tests/test_main.py +1 -1
- pkg-about-1.1.5/src/pkg_about.egg-info/requires.txt +0 -19
- {pkg-about-1.1.5 → pkg_about-1.1.6}/.readthedocs.yml +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/LICENSE +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/MANIFEST.in +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/README.rst +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/docs/CHANGES.rst +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/docs/README.rst +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/docs/_static/.keep +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/docs/_templates/.keep +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/docs/conf.py +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/docs/index.rst +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/setup.cfg +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about/__about__.py +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about/__init__.py +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about/_about.py +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about.egg-info/SOURCES.txt +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about.egg-info/dependency_links.txt +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about.egg-info/top_level.txt +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/src/pkg_about.egg-info/zip-safe +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/tests/__init__.py +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/tests/__main__.py +0 -0
- {pkg-about-1.1.5 → pkg_about-1.1.6}/tests/data/.keep +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pkg-about
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: Shares Python package metadata at runtime.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -30,24 +30,24 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.8.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.8.10
|
|
34
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
35
|
License-File: LICENSE
|
|
36
|
-
Requires-Dist: setuptools>=
|
|
37
|
-
Requires-Dist: packaging>=
|
|
36
|
+
Requires-Dist: setuptools>=70.1.1
|
|
37
|
+
Requires-Dist: packaging>=24.1.0
|
|
38
38
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
39
39
|
Provides-Extra: doc
|
|
40
40
|
Requires-Dist: Sphinx>=7.1.2; extra == "doc"
|
|
41
|
-
Requires-Dist: sphinx-toolbox>=3.
|
|
42
|
-
Requires-Dist: sphinx-tabs>=3.4.
|
|
43
|
-
Requires-Dist: sphinx-copybutton>=0.5.
|
|
44
|
-
Requires-Dist: sphinxcontrib-spelling>=
|
|
45
|
-
Requires-Dist: sphinx-lint>=0.
|
|
41
|
+
Requires-Dist: sphinx-toolbox>=3.6.0; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinx-lint>=0.9.1; extra == "doc"
|
|
46
46
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
47
|
-
Requires-Dist: nbsphinx>=0.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.4; extra == "doc"
|
|
48
48
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: deepdiff>=
|
|
50
|
-
Requires-Dist: rich>=13.7.
|
|
49
|
+
Requires-Dist: deepdiff>=7.0.1; extra == "test"
|
|
50
|
+
Requires-Dist: rich>=13.7.1; extra == "test"
|
|
51
51
|
|
|
52
52
|
pkg-about
|
|
53
53
|
=========
|
|
@@ -142,6 +142,10 @@ Authors
|
|
|
142
142
|
Changelog
|
|
143
143
|
=========
|
|
144
144
|
|
|
145
|
+
1.1.6 (2024-06-20)
|
|
146
|
+
------------------
|
|
147
|
+
- Setup (dependencies) update.
|
|
148
|
+
|
|
145
149
|
1.1.5 (2024-01-26)
|
|
146
150
|
------------------
|
|
147
151
|
- Setup update (now based on tox >= 4.0).
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
[build-system]
|
|
6
6
|
build-backend = 'setuptools.build_meta'
|
|
7
|
-
requires = ['setuptools>=
|
|
7
|
+
requires = ['setuptools>=70.1.1', 'wheel>=0.43.0', 'packaging>=24.1.0', 'tox>=4.15.1']
|
|
8
8
|
|
|
9
9
|
[project]
|
|
10
10
|
name = 'pkg-about'
|
|
11
|
-
version = '1.1.
|
|
11
|
+
version = '1.1.6'
|
|
12
12
|
description = 'Shares Python package metadata at runtime.'
|
|
13
13
|
urls.Homepage = 'https://pypi.org/project/pkg-about/'
|
|
14
14
|
urls.Documentation = 'https://pkg-about.readthedocs.io/'
|
|
@@ -43,11 +43,11 @@ classifiers = [
|
|
|
43
43
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
44
44
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
45
45
|
]
|
|
46
|
-
requires-python = '>=3.8.
|
|
46
|
+
requires-python = '>=3.8.10,<4.0.0'
|
|
47
47
|
dependencies = [
|
|
48
48
|
# mandatory
|
|
49
|
-
'setuptools>=
|
|
50
|
-
'packaging>=
|
|
49
|
+
'setuptools>=70.1.1',
|
|
50
|
+
'packaging>=24.1.0',
|
|
51
51
|
'tomli>=2.0.1 ; python_version < "3.11"',
|
|
52
52
|
# others
|
|
53
53
|
]
|
|
@@ -55,17 +55,17 @@ dynamic = ['readme']
|
|
|
55
55
|
[project.optional-dependencies]
|
|
56
56
|
doc = [
|
|
57
57
|
'Sphinx>=7.1.2',
|
|
58
|
-
'sphinx-toolbox>=3.
|
|
59
|
-
'sphinx-tabs>=3.4.
|
|
60
|
-
'sphinx-copybutton>=0.5.
|
|
61
|
-
'sphinxcontrib-spelling>=
|
|
62
|
-
'sphinx-lint>=0.
|
|
58
|
+
'sphinx-toolbox>=3.6.0',
|
|
59
|
+
'sphinx-tabs>=3.4.5',
|
|
60
|
+
'sphinx-copybutton>=0.5.2',
|
|
61
|
+
'sphinxcontrib-spelling>=8.0.0',
|
|
62
|
+
'sphinx-lint>=0.9.1',
|
|
63
63
|
'restructuredtext-lint>=1.4.0',
|
|
64
|
-
'nbsphinx>=0.
|
|
64
|
+
'nbsphinx>=0.9.4',
|
|
65
65
|
]
|
|
66
66
|
test = [
|
|
67
|
-
'deepdiff>=
|
|
68
|
-
'rich>=13.7.
|
|
67
|
+
'deepdiff>=7.0.1',
|
|
68
|
+
'rich>=13.7.1',
|
|
69
69
|
]
|
|
70
70
|
|
|
71
71
|
[project.scripts]
|
|
@@ -168,19 +168,19 @@ labels =
|
|
|
168
168
|
docs = docs
|
|
169
169
|
build = py{38,39,310,311,312}, pypy{39,310}, docs, build
|
|
170
170
|
deploy = py{38,39,310,311,312}, pypy{39,310}, docs, build, publish
|
|
171
|
-
minversion = 4.
|
|
171
|
+
minversion = 4.15.1
|
|
172
172
|
skip_missing_interpreters = true
|
|
173
173
|
requires =
|
|
174
174
|
{[base]deps}
|
|
175
|
-
virtualenv>=20.
|
|
175
|
+
virtualenv>=20.26.3
|
|
176
176
|
tox-tags>=0.2.0
|
|
177
177
|
|
|
178
178
|
[base]
|
|
179
|
-
basepython = python3.
|
|
179
|
+
basepython = python3.12
|
|
180
180
|
deps =
|
|
181
|
-
pip>=
|
|
182
|
-
setuptools>=
|
|
183
|
-
wheel>=0.
|
|
181
|
+
pip>=24.1.0
|
|
182
|
+
setuptools>=70.1.1
|
|
183
|
+
wheel>=0.43.0
|
|
184
184
|
packagesubdir = pkg_about
|
|
185
185
|
|
|
186
186
|
[testenv]
|
|
@@ -212,9 +212,9 @@ commands =
|
|
|
212
212
|
{envpython} -m coverage html
|
|
213
213
|
deps =
|
|
214
214
|
{[testenv]deps}
|
|
215
|
-
coverage>=7.4
|
|
215
|
+
coverage>=7.5.4
|
|
216
216
|
covdefaults>=2.3.0
|
|
217
|
-
diff-cover>=
|
|
217
|
+
diff-cover>=9.0.0
|
|
218
218
|
|
|
219
219
|
[testenv:docs]
|
|
220
220
|
basepython = {[base]basepython}
|
|
@@ -237,7 +237,7 @@ commands =
|
|
|
237
237
|
{envpython} -m twine check dist/*
|
|
238
238
|
deps =
|
|
239
239
|
{[testenv]deps}
|
|
240
|
-
twine>=
|
|
240
|
+
twine>=5.0.0
|
|
241
241
|
|
|
242
242
|
[testenv:publish]
|
|
243
243
|
depends = build
|
|
@@ -248,7 +248,7 @@ commands =
|
|
|
248
248
|
{envpython} -m twine upload dist/*
|
|
249
249
|
extras =
|
|
250
250
|
deps =
|
|
251
|
-
twine>=
|
|
251
|
+
twine>=5.0.0
|
|
252
252
|
|
|
253
253
|
[testenv:lint]
|
|
254
254
|
basepython = {[base]basepython}
|
|
@@ -257,10 +257,10 @@ commands =
|
|
|
257
257
|
extras =
|
|
258
258
|
deps =
|
|
259
259
|
{[testenv]deps}
|
|
260
|
-
flake8>=7.
|
|
260
|
+
flake8>=7.1.0
|
|
261
261
|
flake8-pyproject>=1.2.3
|
|
262
262
|
flake8-docstrings>=1.7.0
|
|
263
|
-
pep8-naming>=0.
|
|
264
|
-
flake8-builtins>=2.
|
|
263
|
+
pep8-naming>=0.14.1
|
|
264
|
+
flake8-builtins>=2.5.0
|
|
265
265
|
flake8-deprecated>=2.2.1
|
|
266
266
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pkg-about
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: Shares Python package metadata at runtime.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -30,24 +30,24 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.8.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.8.10
|
|
34
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
35
|
License-File: LICENSE
|
|
36
|
-
Requires-Dist: setuptools>=
|
|
37
|
-
Requires-Dist: packaging>=
|
|
36
|
+
Requires-Dist: setuptools>=70.1.1
|
|
37
|
+
Requires-Dist: packaging>=24.1.0
|
|
38
38
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
39
39
|
Provides-Extra: doc
|
|
40
40
|
Requires-Dist: Sphinx>=7.1.2; extra == "doc"
|
|
41
|
-
Requires-Dist: sphinx-toolbox>=3.
|
|
42
|
-
Requires-Dist: sphinx-tabs>=3.4.
|
|
43
|
-
Requires-Dist: sphinx-copybutton>=0.5.
|
|
44
|
-
Requires-Dist: sphinxcontrib-spelling>=
|
|
45
|
-
Requires-Dist: sphinx-lint>=0.
|
|
41
|
+
Requires-Dist: sphinx-toolbox>=3.6.0; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinx-lint>=0.9.1; extra == "doc"
|
|
46
46
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
47
|
-
Requires-Dist: nbsphinx>=0.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.4; extra == "doc"
|
|
48
48
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: deepdiff>=
|
|
50
|
-
Requires-Dist: rich>=13.7.
|
|
49
|
+
Requires-Dist: deepdiff>=7.0.1; extra == "test"
|
|
50
|
+
Requires-Dist: rich>=13.7.1; extra == "test"
|
|
51
51
|
|
|
52
52
|
pkg-about
|
|
53
53
|
=========
|
|
@@ -142,6 +142,10 @@ Authors
|
|
|
142
142
|
Changelog
|
|
143
143
|
=========
|
|
144
144
|
|
|
145
|
+
1.1.6 (2024-06-20)
|
|
146
|
+
------------------
|
|
147
|
+
- Setup (dependencies) update.
|
|
148
|
+
|
|
145
149
|
1.1.5 (2024-01-26)
|
|
146
150
|
------------------
|
|
147
151
|
- Setup update (now based on tox >= 4.0).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
setuptools>=70.1.1
|
|
2
|
+
packaging>=24.1.0
|
|
3
|
+
|
|
4
|
+
[:python_version < "3.11"]
|
|
5
|
+
tomli>=2.0.1
|
|
6
|
+
|
|
7
|
+
[doc]
|
|
8
|
+
Sphinx>=7.1.2
|
|
9
|
+
sphinx-toolbox>=3.6.0
|
|
10
|
+
sphinx-tabs>=3.4.5
|
|
11
|
+
sphinx-copybutton>=0.5.2
|
|
12
|
+
sphinxcontrib-spelling>=8.0.0
|
|
13
|
+
sphinx-lint>=0.9.1
|
|
14
|
+
restructuredtext-lint>=1.4.0
|
|
15
|
+
nbsphinx>=0.9.4
|
|
16
|
+
|
|
17
|
+
[test]
|
|
18
|
+
deepdiff>=7.0.1
|
|
19
|
+
rich>=13.7.1
|
|
@@ -12,7 +12,7 @@ class MainTestCase(unittest.TestCase):
|
|
|
12
12
|
|
|
13
13
|
@classmethod
|
|
14
14
|
def setUpClass(cls):
|
|
15
|
-
cls.version_expected = "1.1.
|
|
15
|
+
cls.version_expected = "1.1.6"
|
|
16
16
|
version_parts = cls.version_expected.split(".")
|
|
17
17
|
cls.version_major_expected = int(version_parts[0])
|
|
18
18
|
cls.version_minor_expected = int(version_parts[1])
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
setuptools>=68.2.2
|
|
2
|
-
packaging>=23.2.0
|
|
3
|
-
|
|
4
|
-
[:python_version < "3.11"]
|
|
5
|
-
tomli>=2.0.1
|
|
6
|
-
|
|
7
|
-
[doc]
|
|
8
|
-
Sphinx>=7.1.2
|
|
9
|
-
sphinx-toolbox>=3.5.0
|
|
10
|
-
sphinx-tabs>=3.4.1
|
|
11
|
-
sphinx-copybutton>=0.5.1
|
|
12
|
-
sphinxcontrib-spelling>=7.7.0
|
|
13
|
-
sphinx-lint>=0.6.7
|
|
14
|
-
restructuredtext-lint>=1.4.0
|
|
15
|
-
nbsphinx>=0.8.10
|
|
16
|
-
|
|
17
|
-
[test]
|
|
18
|
-
deepdiff>=6.7.1
|
|
19
|
-
rich>=13.7.0
|
|
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
|