annotate 1.3.0__tar.gz → 2.0.0__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.
- {annotate-1.3.0 → annotate-2.0.0}/CHANGES.rst +6 -0
- {annotate-1.3.0 → annotate-2.0.0}/PKG-INFO +11 -3
- {annotate-1.3.0 → annotate-2.0.0}/pyproject.toml +10 -8
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate.egg-info/PKG-INFO +11 -3
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate.egg-info/requires.txt +3 -2
- {annotate-1.3.0 → annotate-2.0.0}/.readthedocs.yml +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/LICENSE +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/MANIFEST.in +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/README.rst +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/docs/CHANGES.rst +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/docs/README.rst +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/docs/_static/.keep +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/docs/_templates/.keep +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/docs/conf.py +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/docs/index.rst +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/setup.cfg +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate/__about__.py +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate/__init__.py +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate/_annotate.py +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate/py.typed +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate.egg-info/SOURCES.txt +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate.egg-info/dependency_links.txt +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate.egg-info/top_level.txt +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/src/annotate.egg-info/zip-safe +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/tests/__init__.py +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/tests/__main__.py +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/tests/data/.keep +0 -0
- {annotate-1.3.0 → annotate-2.0.0}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -29,11 +29,13 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
29
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
31
31
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
|
+
Classifier: Typing :: Typed
|
|
32
33
|
Requires-Python: <4.0.0,>=3.10.0
|
|
33
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
35
|
License-File: LICENSE
|
|
35
36
|
Requires-Dist: setuptools>=80.9.0
|
|
36
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
38
|
+
Requires-Dist: pkg-about>=2.0.0
|
|
37
39
|
Provides-Extra: doc
|
|
38
40
|
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
41
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
@@ -45,7 +47,7 @@ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
|
45
47
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
48
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
47
49
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=8.6.
|
|
50
|
+
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
51
|
Requires-Dist: rich>=14.1.0; extra == "test"
|
|
50
52
|
Dynamic: license-file
|
|
51
53
|
|
|
@@ -288,6 +290,12 @@ Authors
|
|
|
288
290
|
Changelog
|
|
289
291
|
=========
|
|
290
292
|
|
|
293
|
+
2.0.0 (2025-09-08)
|
|
294
|
+
------------------
|
|
295
|
+
- Mark the package as typed.
|
|
296
|
+
- 100% code coverage.
|
|
297
|
+
- Setup (dependencies) update.
|
|
298
|
+
|
|
291
299
|
1.3.0 (2025-09-01)
|
|
292
300
|
------------------
|
|
293
301
|
- Making the package typed.
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.
|
|
6
|
+
requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.30.2']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'annotate'
|
|
10
|
-
version = '
|
|
10
|
+
version = '2.0.0'
|
|
11
11
|
description = '''Decorator to set a function's __annotations__ like Py3.'''
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz' },
|
|
@@ -41,12 +41,14 @@ classifiers = [
|
|
|
41
41
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
42
42
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
43
43
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
44
|
+
'Typing :: Typed',
|
|
44
45
|
]
|
|
45
46
|
requires-python = '>=3.10.0,<4.0.0'
|
|
46
47
|
dependencies = [
|
|
47
48
|
# mandatory
|
|
48
49
|
'setuptools>=80.9.0',
|
|
49
|
-
'
|
|
50
|
+
'typing_extensions>=4.15.0',
|
|
51
|
+
'pkg-about>=2.0.0',
|
|
50
52
|
# others
|
|
51
53
|
]
|
|
52
54
|
dynamic = ['readme']
|
|
@@ -62,7 +64,7 @@ optional-dependencies.'doc' = [
|
|
|
62
64
|
'nbsphinx>=0.9.7',
|
|
63
65
|
]
|
|
64
66
|
optional-dependencies.'test' = [
|
|
65
|
-
'deepdiff>=8.6.
|
|
67
|
+
'deepdiff>=8.6.1',
|
|
66
68
|
'rich>=14.1.0',
|
|
67
69
|
]
|
|
68
70
|
|
|
@@ -172,12 +174,12 @@ files = ['src']
|
|
|
172
174
|
[tool.tox]
|
|
173
175
|
env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true},
|
|
174
176
|
'coverage', 'typing', 'lint', 'docs']
|
|
175
|
-
min_version = '4.29.0'
|
|
176
177
|
skip_missing_interpreters = true
|
|
177
178
|
requires = [
|
|
178
179
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
180
|
+
'tox>=4.30.2',
|
|
179
181
|
'virtualenv>=20.34.0',
|
|
180
|
-
'tox-backtick>=0.
|
|
182
|
+
'tox-backtick>=1.0.0',
|
|
181
183
|
]
|
|
182
184
|
[tool.tox.labels]
|
|
183
185
|
py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
|
|
@@ -266,7 +268,7 @@ commands = [
|
|
|
266
268
|
deps = [
|
|
267
269
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
268
270
|
'build>=1.3.0',
|
|
269
|
-
'twine>=6.
|
|
271
|
+
'twine>=6.2.0',
|
|
270
272
|
]
|
|
271
273
|
|
|
272
274
|
[tool.tox.env.'publish']
|
|
@@ -279,7 +281,7 @@ commands = [
|
|
|
279
281
|
]
|
|
280
282
|
extras = []
|
|
281
283
|
deps = [
|
|
282
|
-
'twine>=6.
|
|
284
|
+
'twine>=6.2.0',
|
|
283
285
|
]
|
|
284
286
|
|
|
285
287
|
[tool.tox.env.'typing']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -29,11 +29,13 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
29
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
31
31
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
|
+
Classifier: Typing :: Typed
|
|
32
33
|
Requires-Python: <4.0.0,>=3.10.0
|
|
33
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
35
|
License-File: LICENSE
|
|
35
36
|
Requires-Dist: setuptools>=80.9.0
|
|
36
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
38
|
+
Requires-Dist: pkg-about>=2.0.0
|
|
37
39
|
Provides-Extra: doc
|
|
38
40
|
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
41
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
@@ -45,7 +47,7 @@ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
|
45
47
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
48
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
47
49
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=8.6.
|
|
50
|
+
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
51
|
Requires-Dist: rich>=14.1.0; extra == "test"
|
|
50
52
|
Dynamic: license-file
|
|
51
53
|
|
|
@@ -288,6 +290,12 @@ Authors
|
|
|
288
290
|
Changelog
|
|
289
291
|
=========
|
|
290
292
|
|
|
293
|
+
2.0.0 (2025-09-08)
|
|
294
|
+
------------------
|
|
295
|
+
- Mark the package as typed.
|
|
296
|
+
- 100% code coverage.
|
|
297
|
+
- Setup (dependencies) update.
|
|
298
|
+
|
|
291
299
|
1.3.0 (2025-09-01)
|
|
292
300
|
------------------
|
|
293
301
|
- Making the package typed.
|
|
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
|
|
File without changes
|
|
File without changes
|