annotate 1.0.18__zip → 1.0.20__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.
Files changed (33) hide show
  1. annotate-1.0.20/.readthedocs.yml +15 -0
  2. {annotate-1.0.18 → annotate-1.0.20}/CHANGES.rst +11 -1
  3. {annotate-1.0.18 → annotate-1.0.20}/LICENSE +1 -1
  4. {annotate-1.0.18 → annotate-1.0.20}/MANIFEST.in +2 -3
  5. {annotate-1.0.18 → annotate-1.0.20}/PKG-INFO +34 -13
  6. {annotate-1.0.18 → annotate-1.0.20}/README.rst +5 -6
  7. annotate-1.0.20/pyproject.toml +271 -0
  8. annotate-1.0.20/setup.cfg +4 -0
  9. annotate-1.0.20/src/annotate/__about__.py +5 -0
  10. annotate-1.0.20/src/annotate/__init__.py +6 -0
  11. {annotate-1.0.18 → annotate-1.0.20}/src/annotate/_annotate.py +2 -3
  12. {annotate-1.0.18 → annotate-1.0.20}/src/annotate.egg-info/PKG-INFO +34 -13
  13. {annotate-1.0.18 → annotate-1.0.20}/src/annotate.egg-info/SOURCES.txt +0 -1
  14. annotate-1.0.20/src/annotate.egg-info/requires.txt +16 -0
  15. {annotate-1.0.18 → annotate-1.0.20}/tests/__init__.py +2 -3
  16. {annotate-1.0.18 → annotate-1.0.20}/tests/__main__.py +2 -3
  17. {annotate-1.0.18 → annotate-1.0.20}/tests/test_main.py +2 -3
  18. annotate-1.0.18/.readthedocs.yml +0 -9
  19. annotate-1.0.18/pyproject.toml +0 -149
  20. annotate-1.0.18/setup.cfg +0 -115
  21. annotate-1.0.18/src/annotate/__about__.py +0 -6
  22. annotate-1.0.18/src/annotate/__init__.py +0 -7
  23. annotate-1.0.18/src/annotate.egg-info/requires.txt +0 -14
  24. {annotate-1.0.18 → annotate-1.0.20}/docs/CHANGES.rst +0 -0
  25. {annotate-1.0.18 → annotate-1.0.20}/docs/README.rst +0 -0
  26. {annotate-1.0.18 → annotate-1.0.20}/docs/_static/.keep +0 -0
  27. {annotate-1.0.18 → annotate-1.0.20}/docs/_templates/.keep +0 -0
  28. {annotate-1.0.18 → annotate-1.0.20}/docs/conf.py +0 -0
  29. {annotate-1.0.18 → annotate-1.0.20}/docs/index.rst +0 -0
  30. {annotate-1.0.18 → annotate-1.0.20}/src/annotate.egg-info/dependency_links.txt +0 -0
  31. {annotate-1.0.18 → annotate-1.0.20}/src/annotate.egg-info/top_level.txt +0 -0
  32. {annotate-1.0.18 → annotate-1.0.20}/src/annotate.egg-info/zip-safe +0 -0
  33. {annotate-1.0.18 → annotate-1.0.20}/tests/data/.keep +0 -0
@@ -0,0 +1,15 @@
1
+ version: 2
2
+ build:
3
+ os: "ubuntu-22.04"
4
+ tools:
5
+ python: "3.12"
6
+ python:
7
+ install:
8
+ - method: pip
9
+ path: .
10
+ extra_requirements:
11
+ - doc
12
+ sphinx:
13
+ builder: html
14
+ configuration: docs/conf.py
15
+ fail_on_warning: true
@@ -1,6 +1,16 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.0.20 (2024-08-13)
5
+ -------------------
6
+ - Add support for Python 3.12 and 3.13
7
+ - Drop support for Python 3.7
8
+ - Setup (dependencies) update.
9
+
10
+ 1.0.19 (2022-10-18)
11
+ -------------------
12
+ - Tox configuration has been moved to pyproject.toml
13
+
4
14
  1.0.18 (2022-08-22)
5
15
  -------------------
6
16
  - Setup update.
@@ -12,7 +22,7 @@ Changelog
12
22
 
13
23
  1.0.16 (2022-01-10)
14
24
  -------------------
15
- - Drop support for Python 2, 3.5 and 3.6.
25
+ - Drop support for Python 2, 3.5 and 3.6
16
26
  - Copyright year update.
17
27
  - Setup update.
18
28
 
@@ -1,6 +1,6 @@
1
1
  zlib License
2
2
 
3
- Copyright (C) 2012-2022 Adam Karpierz
3
+ Copyright (C) 2012-2024 Adam Karpierz
4
4
 
5
5
  This software is provided 'as-is', without any express or implied
6
6
  warranty. In no event will the authors be held liable for any damages
@@ -1,6 +1,5 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  include README.rst
6
5
  include CHANGES.rst
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: annotate
3
- Version: 1.0.18
3
+ Version: 1.0.20
4
4
  Summary: Decorator to set a function's __annotations__ like Py3.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
7
7
  Maintainer: Adam Karpierz
8
8
  Maintainer-email: adam@karpierz.net
9
- License: zlib/libpng License ; https://opensource.org/licenses/Zlib
9
+ License: zlib/libpng License ; https://opensource.org/license/zlib
10
10
  Project-URL: Homepage, https://pypi.org/project/annotate/
11
11
  Project-URL: Documentation, https://annotate2.readthedocs.io/
12
12
  Project-URL: Download, https://pypi.org/project/annotate/
@@ -21,21 +21,33 @@ Classifier: Operating System :: OS Independent
21
21
  Classifier: Natural Language :: Polish
22
22
  Classifier: Programming Language :: Python
23
23
  Classifier: Programming Language :: Python :: 3
24
- Classifier: Programming Language :: Python :: 3.7
25
24
  Classifier: Programming Language :: Python :: 3.8
26
25
  Classifier: Programming Language :: Python :: 3.9
27
26
  Classifier: Programming Language :: Python :: 3.10
28
27
  Classifier: Programming Language :: Python :: 3.11
28
+ Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Programming Language :: Python :: 3.13
29
30
  Classifier: Programming Language :: Python :: 3 :: Only
30
31
  Classifier: Programming Language :: Python :: Implementation :: CPython
31
32
  Classifier: Programming Language :: Python :: Implementation :: PyPy
32
- Classifier: Programming Language :: Python :: Implementation :: Stackless
33
33
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
34
- Requires-Python: <4.0.0,>=3.7.0
34
+ Requires-Python: <4.0.0,>=3.8.10
35
35
  Description-Content-Type: text/x-rst; charset=UTF-8
36
+ License-File: LICENSE
37
+ Requires-Dist: setuptools>=72.2.0
38
+ Requires-Dist: pkg-about>=1.1.8
36
39
  Provides-Extra: doc
40
+ Requires-Dist: Sphinx>=7.1.2; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.7.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
+ Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
47
+ Requires-Dist: nbsphinx>=0.9.4; extra == "doc"
37
48
  Provides-Extra: test
38
- License-File: LICENSE
49
+ Requires-Dist: deepdiff>=7.0.1; extra == "test"
50
+ Requires-Dist: rich>=13.7.1; extra == "test"
39
51
 
40
52
  annotate
41
53
  ========
@@ -206,10 +218,9 @@ Installation
206
218
 
207
219
  Prerequisites:
208
220
 
209
- + Python 3.7 or higher
221
+ + Python 3.8 or higher
210
222
 
211
223
  * https://www.python.org/
212
- * 3.7 is a primary test environment.
213
224
 
214
225
  + pip and setuptools
215
226
 
@@ -231,7 +242,7 @@ Prerequisites:
231
242
 
232
243
  python -m pip install --upgrade tox
233
244
 
234
- Visit `development page`_.
245
+ Visit `Development page`_.
235
246
 
236
247
  Installation from sources:
237
248
 
@@ -256,9 +267,9 @@ or on development mode:
256
267
  License
257
268
  =======
258
269
 
259
- | Copyright (c) 2012-2022 Adam Karpierz
270
+ | Copyright (c) 2012-2024 Adam Karpierz
260
271
  | Licensed under the zlib/libpng License
261
- | https://opensource.org/licenses/Zlib
272
+ | https://opensource.org/license/zlib
262
273
  | Please refer to the accompanying LICENSE file.
263
274
 
264
275
  Authors
@@ -269,13 +280,23 @@ Authors
269
280
  .. |package| replace:: annotate
270
281
  .. |package_bold| replace:: **annotate**
271
282
  .. |respository| replace:: https://github.com/karpierz/annotate.git
272
- .. _development page: https://github.com/karpierz/annotate
283
+ .. _Development page: https://github.com/karpierz/annotate
273
284
  .. _PyPI record: https://pypi.org/project/annotate/
274
285
  .. _Documentation: https://annotate.readthedocs.io/
275
286
 
276
287
  Changelog
277
288
  =========
278
289
 
290
+ 1.0.20 (2024-08-13)
291
+ -------------------
292
+ - Add support for Python 3.12 and 3.13
293
+ - Drop support for Python 3.7
294
+ - Setup (dependencies) update.
295
+
296
+ 1.0.19 (2022-10-18)
297
+ -------------------
298
+ - Tox configuration has been moved to pyproject.toml
299
+
279
300
  1.0.18 (2022-08-22)
280
301
  -------------------
281
302
  - Setup update.
@@ -287,7 +308,7 @@ Changelog
287
308
 
288
309
  1.0.16 (2022-01-10)
289
310
  -------------------
290
- - Drop support for Python 2, 3.5 and 3.6.
311
+ - Drop support for Python 2, 3.5 and 3.6
291
312
  - Copyright year update.
292
313
  - Setup update.
293
314
 
@@ -167,10 +167,9 @@ Installation
167
167
 
168
168
  Prerequisites:
169
169
 
170
- + Python 3.7 or higher
170
+ + Python 3.8 or higher
171
171
 
172
172
  * https://www.python.org/
173
- * 3.7 is a primary test environment.
174
173
 
175
174
  + pip and setuptools
176
175
 
@@ -192,7 +191,7 @@ Prerequisites:
192
191
 
193
192
  python -m pip install --upgrade tox
194
193
 
195
- Visit `development page`_.
194
+ Visit `Development page`_.
196
195
 
197
196
  Installation from sources:
198
197
 
@@ -217,9 +216,9 @@ or on development mode:
217
216
  License
218
217
  =======
219
218
 
220
- | Copyright (c) 2012-2022 Adam Karpierz
219
+ | Copyright (c) 2012-2024 Adam Karpierz
221
220
  | Licensed under the zlib/libpng License
222
- | https://opensource.org/licenses/Zlib
221
+ | https://opensource.org/license/zlib
223
222
  | Please refer to the accompanying LICENSE file.
224
223
 
225
224
  Authors
@@ -230,6 +229,6 @@ Authors
230
229
  .. |package| replace:: annotate
231
230
  .. |package_bold| replace:: **annotate**
232
231
  .. |respository| replace:: https://github.com/karpierz/annotate.git
233
- .. _development page: https://github.com/karpierz/annotate
232
+ .. _Development page: https://github.com/karpierz/annotate
234
233
  .. _PyPI record: https://pypi.org/project/annotate/
235
234
  .. _Documentation: https://annotate.readthedocs.io/
@@ -0,0 +1,271 @@
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
3
+
4
+ [build-system]
5
+ build-backend = 'setuptools.build_meta'
6
+ requires = ['setuptools>=72.2.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.18.0']
7
+
8
+ [project]
9
+ name = 'annotate'
10
+ version = '1.0.20'
11
+ description = '''Decorator to set a function's __annotations__ like Py3.'''
12
+ urls.Homepage = 'https://pypi.org/project/annotate/'
13
+ urls.Documentation = 'https://annotate2.readthedocs.io/'
14
+ urls.Download = 'https://pypi.org/project/annotate/'
15
+ urls.Source = 'https://github.com/karpierz/annotate'
16
+ urls.Issues = 'https://github.com/karpierz/annotate/issues'
17
+ license = { text = 'zlib/libpng License ; https://opensource.org/license/zlib' }
18
+ authors = [
19
+ { name = 'Adam Karpierz' },
20
+ { email = 'adam@karpierz.net' },
21
+ ]
22
+ maintainers = [
23
+ { name = 'Adam Karpierz' },
24
+ { email = 'adam@karpierz.net' },
25
+ ]
26
+ keywords = ['annotate', 'typing', 'decorator']
27
+ classifiers = [
28
+ 'Development Status :: 5 - Production/Stable',
29
+ 'Intended Audience :: Developers',
30
+ 'License :: OSI Approved :: zlib/libpng License',
31
+ 'Operating System :: OS Independent',
32
+ 'Natural Language :: Polish',
33
+ 'Programming Language :: Python',
34
+ 'Programming Language :: Python :: 3',
35
+ 'Programming Language :: Python :: 3.8',
36
+ 'Programming Language :: Python :: 3.9',
37
+ 'Programming Language :: Python :: 3.10',
38
+ 'Programming Language :: Python :: 3.11',
39
+ 'Programming Language :: Python :: 3.12',
40
+ 'Programming Language :: Python :: 3.13',
41
+ 'Programming Language :: Python :: 3 :: Only',
42
+ 'Programming Language :: Python :: Implementation :: CPython',
43
+ 'Programming Language :: Python :: Implementation :: PyPy',
44
+ 'Topic :: Software Development :: Libraries :: Python Modules',
45
+ ]
46
+ requires-python = '>=3.8.10,<4.0.0'
47
+ dependencies = [
48
+ # mandatory
49
+ 'setuptools>=72.2.0',
50
+ 'pkg-about>=1.1.8',
51
+ # others
52
+ ]
53
+ dynamic = ['readme']
54
+ [project.optional-dependencies]
55
+ doc = [
56
+ 'Sphinx>=7.1.2',
57
+ 'sphinx-toolbox>=3.7.0',
58
+ 'sphinx-tabs>=3.4.5',
59
+ 'sphinx-copybutton>=0.5.2',
60
+ 'sphinxcontrib-spelling>=8.0.0',
61
+ 'sphinx-lint>=0.9.1',
62
+ 'restructuredtext-lint>=1.4.0',
63
+ 'nbsphinx>=0.9.4',
64
+ ]
65
+ test = [
66
+ 'deepdiff>=7.0.1',
67
+ 'rich>=13.7.1',
68
+ ]
69
+
70
+ [project.scripts]
71
+ #'annotate' = 'annotate.__main__:main'
72
+
73
+ [project.gui-scripts]
74
+ #'annotate-gui' = 'annotate:main_gui'
75
+
76
+ #[project.entry-points.'annotate.magical']
77
+ #epoint = 'annotate:main_epoint'
78
+
79
+ [tool.setuptools.dynamic]
80
+ readme = { file = ['README.rst', 'CHANGES.rst'], content-type = 'text/x-rst; charset=UTF-8' }
81
+
82
+ [tool.setuptools]
83
+ license-files = ['LICENSE']
84
+ include-package-data = true
85
+ platforms = ['any']
86
+ zip-safe = true
87
+
88
+ [tool.setuptools.packages.find]
89
+ namespaces = false
90
+ where = ['src']
91
+
92
+ [tool.setuptools.package-dir]
93
+ '' = 'src'
94
+ #'annotate.tests' = 'tests'
95
+
96
+ [tool.setuptools.package-data]
97
+ annotate = [
98
+ ]
99
+
100
+ [tool.setuptools.exclude-package-data]
101
+ '*' = ['*.c','*.h','*.cpp','*.hpp','*.cxx','*.hxx','*.pyx','*.pxd']
102
+ renumerate = [
103
+ ]
104
+
105
+ [tool.coverage.run]
106
+ source = [
107
+ 'annotate',
108
+ 'tests',
109
+ ]
110
+ omit = [
111
+ ]
112
+ data_file = '.tox/coverage/.coverage'
113
+ plugins = ['covdefaults']
114
+
115
+ [tool.coverage.report]
116
+ exclude_lines = [
117
+ # Regexes
118
+ # Have to re-enable the standard pragma
119
+ '^\s*if\s+self\.debug\s*:',
120
+ '^\s*if\s+__debug__\s*:',
121
+ '^\s*if\s+(0|False)\s*:',
122
+ '''if\s+__name__.*\s*==\s*['"]__main__['"]\s*:''',
123
+ '^\s*@unittest\.skip\(',
124
+ '^\s*@unittest\.skipIf\(sys\.platform\.startswith\("win"\)',
125
+ ]
126
+ omit = [
127
+ 'tests/run.py',
128
+ ]
129
+ skip_covered = false
130
+
131
+ [tool.coverage.html]
132
+ directory = '.tox/coverage/.coverage.html'
133
+
134
+ [tool.flake8]
135
+ filename = ['*.py','*.pyx']
136
+ #include = ['tests']
137
+ #exclude = ['.tox','*.egg','.git','__pycache__','build','_build','docs/_build','dist']
138
+ max-line-length = 99
139
+ ignore = ['E126','E203','E221','E251','E302','E701','E702','E731',
140
+ 'E122','E127','E128','E222','E272','E241','E266','E226','E704',
141
+ 'D100','D101','D102','D103','D104','D400','D401','D202',
142
+ 'N806','N802','N803','N801',
143
+ 'I100','W503']
144
+ # (e.g. 'E4','W') default: 'E121','E123','126','226','E24','704'
145
+ #select =
146
+ #select = ['E','W','F','N','I']
147
+ output-file = '.tox/lint/flake8out.txt'
148
+ count = true
149
+ #show-pep8,
150
+ #show-source
151
+ #verbose
152
+ #quiet
153
+
154
+ #
155
+ # Configuration(s) for tox
156
+ #
157
+
158
+ [tool.tox]
159
+ legacy_tox_ini = """
160
+ [tox]
161
+ envlist = py{38,39,310,311,312,313}, pypy{39,310}, docs
162
+ labels =
163
+ py = py{38,39,310,311,312,313}, pypy{39,310}
164
+ prepare = prepare
165
+ coverage = coverage
166
+ lint = lint
167
+ docs = docs
168
+ build = py{38,39,310,311,312,313}, pypy{39,310}, docs, build
169
+ deploy = py{38,39,310,311,312,313}, pypy{39,310}, docs, build, publish
170
+ minversion = 4.18.0
171
+ skip_missing_interpreters = true
172
+ requires =
173
+ {[base]deps}
174
+ virtualenv>=20.26.3
175
+ tox-backtick>=0.4.6
176
+ tox-tags>=0.2.0
177
+
178
+ [base]
179
+ basepython = python3.12
180
+ deps =
181
+ pip>=24.2.0
182
+ setuptools>=72.2.0
183
+ wheel>=0.44.0
184
+ packagesubdir = annotate
185
+
186
+ [testenv]
187
+ passenv = WINDIR
188
+ setenv =
189
+ PYTHONDONTWRITEBYTECODE = 1
190
+ commands =
191
+ {envpython} --version
192
+ {envpython} -m tests {posargs}
193
+ extras = test
194
+ deps =
195
+ {[base]deps}
196
+
197
+ [testenv:prepare]
198
+ basepython = {[base]basepython}
199
+ skip_install = true
200
+ allowlist_externals =
201
+ cmd
202
+ .build
203
+ commands =
204
+ cmd /C if exist .build.cmd .build.cmd
205
+
206
+ [testenv:coverage]
207
+ basepython = {[base]basepython}
208
+ commands =
209
+ {envpython} -m coverage erase
210
+ -{envpython} -m coverage run -m tests {posargs}
211
+ {envpython} -m coverage report
212
+ {envpython} -m coverage html
213
+ deps =
214
+ {[testenv]deps}
215
+ coverage>=7.6.1
216
+ covdefaults>=2.3.0
217
+ diff-cover>=9.1.1
218
+
219
+ [testenv:docs]
220
+ basepython = {[base]basepython}
221
+ commands =
222
+ {envpython} -m sphinxlint --ignore .tox --ignore build --ignore dist
223
+ #{envpython} -m sphinx.apidoc -f {envsitepackagesdir}/{[base]packagesubdir}
224
+ {envpython} -m sphinx.cmd.build -W -a -b html -E ./docs ./build/docs/html
225
+ {envpython} -m sphinx.cmd.build -W -a -b linkcheck ./docs ./build/docs/html
226
+ {envpython} -m sphinx.cmd.build -W -a -b doctest ./docs ./build/docs/html
227
+ extras = doc
228
+ deps =
229
+
230
+ [testenv:build]
231
+ depends = py{38,39,310,311,312,313}, pypy{39,310}, docs
232
+ basepython = {[base]basepython}
233
+ setenv =
234
+ {[testenv]setenv}
235
+ PKG_PVER=`{envpython} -W ignore -c "import platform ; print(''.join(platform.python_version_tuple()[:2]), end='')" 2> nul`
236
+ PKG_NAME=`{envpython} -W ignore -c "import setuptools ; setuptools._distutils.core._setup_stop_after='config' ; print(setuptools.setup().metadata.get_name(), end='')" 2> nul`
237
+ PKG_DIST=`{envpython} -W ignore -c "import setuptools ; setuptools._distutils.core._setup_stop_after='config' ; print(setuptools.setup().metadata.get_fullname(), end='')" 2> nul`
238
+ commands =
239
+ {envpython} -W ignore -c "from setuptools import setup ; setup()" --quiet sdist --formats=zip
240
+ {envpython} -W ignore -c "from setuptools import setup ; setup()" --quiet bdist_wheel
241
+ # check out for PyPi
242
+ {envpython} -m twine check dist/*
243
+ deps =
244
+ {[testenv]deps}
245
+ twine>=5.1.1
246
+
247
+ [testenv:publish]
248
+ depends = build
249
+ basepython = {[base]basepython}
250
+ skip_install = true
251
+ commands =
252
+ # publish on PyPi
253
+ {envpython} -m twine upload dist/*
254
+ extras =
255
+ deps =
256
+ twine>=5.1.1
257
+
258
+ [testenv:lint]
259
+ basepython = {[base]basepython}
260
+ commands =
261
+ {envpython} -m flake8 {envsitepackagesdir}/{[base]packagesubdir}/
262
+ extras =
263
+ deps =
264
+ {[testenv]deps}
265
+ flake8>=7.1.1
266
+ flake8-pyproject>=1.2.3
267
+ flake8-docstrings>=1.7.0
268
+ pep8-naming>=0.14.1
269
+ flake8-builtins>=2.5.0
270
+ flake8-deprecated>=2.2.1
271
+ """
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
3
+
4
+ __import__("pkg_about").about()
5
+ __copyright__ = f"Copyright (c) 2012-2024 {__author__}" # noqa
@@ -0,0 +1,6 @@
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
3
+
4
+ from .__about__ import * ; del __about__ # noqa
5
+
6
+ from ._annotate import * ; del _annotate # noqa
@@ -1,6 +1,5 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  __all__ = ('annotate',)
6
5
 
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: annotate
3
- Version: 1.0.18
3
+ Version: 1.0.20
4
4
  Summary: Decorator to set a function's __annotations__ like Py3.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
7
7
  Maintainer: Adam Karpierz
8
8
  Maintainer-email: adam@karpierz.net
9
- License: zlib/libpng License ; https://opensource.org/licenses/Zlib
9
+ License: zlib/libpng License ; https://opensource.org/license/zlib
10
10
  Project-URL: Homepage, https://pypi.org/project/annotate/
11
11
  Project-URL: Documentation, https://annotate2.readthedocs.io/
12
12
  Project-URL: Download, https://pypi.org/project/annotate/
@@ -21,21 +21,33 @@ Classifier: Operating System :: OS Independent
21
21
  Classifier: Natural Language :: Polish
22
22
  Classifier: Programming Language :: Python
23
23
  Classifier: Programming Language :: Python :: 3
24
- Classifier: Programming Language :: Python :: 3.7
25
24
  Classifier: Programming Language :: Python :: 3.8
26
25
  Classifier: Programming Language :: Python :: 3.9
27
26
  Classifier: Programming Language :: Python :: 3.10
28
27
  Classifier: Programming Language :: Python :: 3.11
28
+ Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Programming Language :: Python :: 3.13
29
30
  Classifier: Programming Language :: Python :: 3 :: Only
30
31
  Classifier: Programming Language :: Python :: Implementation :: CPython
31
32
  Classifier: Programming Language :: Python :: Implementation :: PyPy
32
- Classifier: Programming Language :: Python :: Implementation :: Stackless
33
33
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
34
- Requires-Python: <4.0.0,>=3.7.0
34
+ Requires-Python: <4.0.0,>=3.8.10
35
35
  Description-Content-Type: text/x-rst; charset=UTF-8
36
+ License-File: LICENSE
37
+ Requires-Dist: setuptools>=72.2.0
38
+ Requires-Dist: pkg-about>=1.1.8
36
39
  Provides-Extra: doc
40
+ Requires-Dist: Sphinx>=7.1.2; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.7.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
+ Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
47
+ Requires-Dist: nbsphinx>=0.9.4; extra == "doc"
37
48
  Provides-Extra: test
38
- License-File: LICENSE
49
+ Requires-Dist: deepdiff>=7.0.1; extra == "test"
50
+ Requires-Dist: rich>=13.7.1; extra == "test"
39
51
 
40
52
  annotate
41
53
  ========
@@ -206,10 +218,9 @@ Installation
206
218
 
207
219
  Prerequisites:
208
220
 
209
- + Python 3.7 or higher
221
+ + Python 3.8 or higher
210
222
 
211
223
  * https://www.python.org/
212
- * 3.7 is a primary test environment.
213
224
 
214
225
  + pip and setuptools
215
226
 
@@ -231,7 +242,7 @@ Prerequisites:
231
242
 
232
243
  python -m pip install --upgrade tox
233
244
 
234
- Visit `development page`_.
245
+ Visit `Development page`_.
235
246
 
236
247
  Installation from sources:
237
248
 
@@ -256,9 +267,9 @@ or on development mode:
256
267
  License
257
268
  =======
258
269
 
259
- | Copyright (c) 2012-2022 Adam Karpierz
270
+ | Copyright (c) 2012-2024 Adam Karpierz
260
271
  | Licensed under the zlib/libpng License
261
- | https://opensource.org/licenses/Zlib
272
+ | https://opensource.org/license/zlib
262
273
  | Please refer to the accompanying LICENSE file.
263
274
 
264
275
  Authors
@@ -269,13 +280,23 @@ Authors
269
280
  .. |package| replace:: annotate
270
281
  .. |package_bold| replace:: **annotate**
271
282
  .. |respository| replace:: https://github.com/karpierz/annotate.git
272
- .. _development page: https://github.com/karpierz/annotate
283
+ .. _Development page: https://github.com/karpierz/annotate
273
284
  .. _PyPI record: https://pypi.org/project/annotate/
274
285
  .. _Documentation: https://annotate.readthedocs.io/
275
286
 
276
287
  Changelog
277
288
  =========
278
289
 
290
+ 1.0.20 (2024-08-13)
291
+ -------------------
292
+ - Add support for Python 3.12 and 3.13
293
+ - Drop support for Python 3.7
294
+ - Setup (dependencies) update.
295
+
296
+ 1.0.19 (2022-10-18)
297
+ -------------------
298
+ - Tox configuration has been moved to pyproject.toml
299
+
279
300
  1.0.18 (2022-08-22)
280
301
  -------------------
281
302
  - Setup update.
@@ -287,7 +308,7 @@ Changelog
287
308
 
288
309
  1.0.16 (2022-01-10)
289
310
  -------------------
290
- - Drop support for Python 2, 3.5 and 3.6.
311
+ - Drop support for Python 2, 3.5 and 3.6
291
312
  - Copyright year update.
292
313
  - Setup update.
293
314
 
@@ -4,7 +4,6 @@ LICENSE
4
4
  MANIFEST.in
5
5
  README.rst
6
6
  pyproject.toml
7
- setup.cfg
8
7
  docs/CHANGES.rst
9
8
  docs/README.rst
10
9
  docs/conf.py
@@ -0,0 +1,16 @@
1
+ setuptools>=72.2.0
2
+ pkg-about>=1.1.8
3
+
4
+ [doc]
5
+ Sphinx>=7.1.2
6
+ sphinx-toolbox>=3.7.0
7
+ sphinx-tabs>=3.4.5
8
+ sphinx-copybutton>=0.5.2
9
+ sphinxcontrib-spelling>=8.0.0
10
+ sphinx-lint>=0.9.1
11
+ restructuredtext-lint>=1.4.0
12
+ nbsphinx>=0.9.4
13
+
14
+ [test]
15
+ deepdiff>=7.0.1
16
+ rich>=13.7.1
@@ -1,6 +1,5 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  __all__ = ('top_dir', 'test_dir')
6
5
 
@@ -1,6 +1,5 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import unittest
6
5
  import sys
@@ -1,6 +1,5 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
1
+ # Copyright (c) 2012 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import unittest
6
5
 
@@ -1,9 +0,0 @@
1
- version: 2
2
- build:
3
- image: latest
4
- python:
5
- version: 3.7
6
- install:
7
- - method: pip
8
- path: .
9
- extra_requirements: [doc]
@@ -1,149 +0,0 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
4
-
5
- [build-system]
6
- build-backend = 'setuptools.build_meta'
7
- requires = ['setuptools>=63.2.0', 'wheel>=0.37.1', 'packaging>=21.3.0', 'tox>=3.25.1']
8
-
9
- [project]
10
- name = 'annotate'
11
- version = '1.0.18'
12
- description = '''Decorator to set a function's __annotations__ like Py3.'''
13
- license = { text = 'zlib/libpng License ; https://opensource.org/licenses/Zlib' }
14
- authors = [
15
- { name = 'Adam Karpierz' },
16
- { email = 'adam@karpierz.net' },
17
- ]
18
- maintainers = [
19
- { name = 'Adam Karpierz' },
20
- { email = 'adam@karpierz.net' },
21
- ]
22
- keywords = ['annotate', 'typing', 'decorator']
23
- classifiers = [
24
- 'Development Status :: 5 - Production/Stable',
25
- 'Intended Audience :: Developers',
26
- 'License :: OSI Approved :: zlib/libpng License',
27
- 'Operating System :: OS Independent',
28
- 'Natural Language :: Polish',
29
- 'Programming Language :: Python',
30
- 'Programming Language :: Python :: 3',
31
- 'Programming Language :: Python :: 3.7',
32
- 'Programming Language :: Python :: 3.8',
33
- 'Programming Language :: Python :: 3.9',
34
- 'Programming Language :: Python :: 3.10',
35
- 'Programming Language :: Python :: 3.11',
36
- 'Programming Language :: Python :: 3 :: Only',
37
- 'Programming Language :: Python :: Implementation :: CPython',
38
- 'Programming Language :: Python :: Implementation :: PyPy',
39
- 'Programming Language :: Python :: Implementation :: Stackless',
40
- 'Topic :: Software Development :: Libraries :: Python Modules',
41
- ]
42
- requires-python = '>=3.7.0,<4.0.0'
43
- dependencies = [
44
- # mandatory
45
- 'setuptools>=63.2.0',
46
- 'pkg_about>=1.0.7',
47
- # others
48
- ]
49
- dynamic = ['readme']
50
- [project.optional-dependencies]
51
- doc = [
52
- 'docutils>=0.14,<0.19',
53
- 'Sphinx>=4.5.0',
54
- 'sphinx-tabs>=3.4.1',
55
- 'sphinx_copybutton>=0.5.0',
56
- 'sphinxcontrib-spelling>=7.6.0',
57
- 'restructuredtext-lint>=1.4.0',
58
- 'nbsphinx>=0.8.9',
59
- ]
60
- test = [
61
- 'deepdiff>=5.8.1',
62
- ]
63
- [project.urls]
64
- Homepage = 'https://pypi.org/project/annotate/'
65
- Documentation = 'https://annotate2.readthedocs.io/'
66
- Download = 'https://pypi.org/project/annotate/'
67
- Source = 'https://github.com/karpierz/annotate'
68
- Issues = 'https://github.com/karpierz/annotate/issues'
69
-
70
- [project.scripts]
71
- #annotate = 'annotate.__main__:main'
72
-
73
- [project.gui-scripts]
74
- #annotate-gui = 'annotate:main_gui'
75
-
76
- #[project.entry-points.'annotate.magical']
77
- #epoint = 'annotate:main_epoint'
78
-
79
- [tool.setuptools.dynamic]
80
- readme = { file = ['README.rst', 'CHANGES.rst'], content-type = 'text/x-rst; charset=UTF-8' }
81
-
82
- [tool.setuptools]
83
- license-files = ['LICENSE']
84
- include-package-data = true
85
- platforms = ['any']
86
- zip-safe = true
87
-
88
- [tool.setuptools.packages.find]
89
- namespaces = false
90
- where = ['src']
91
-
92
- [tool.setuptools.package-dir]
93
- '' = 'src'
94
- #'annotate.tests' = 'tests'
95
-
96
- [tool.setuptools.package-data]
97
- annotate = [
98
- ]
99
-
100
- [tool.coverage.run]
101
- source = [
102
- 'annotate',
103
- 'tests',
104
- ]
105
- omit = [
106
- ]
107
- data_file = '.tox/coverage/.coverage'
108
-
109
- [tool.coverage.report]
110
- exclude_lines = [
111
- # Regexes
112
- # Have to re-enable the standard pragma
113
- 'pragma: no cover',
114
- 'if\s+self\.debug\s+:',
115
- 'if\s+__debug__\s+:',
116
- 'raise (AssertionError|NotImplementedError)',
117
- 'if\s+(0|False)\s*:',
118
- '''if\s+__name__.*\s*==\s*'__main__'\s*:''',
119
- 'if\s+__name__.*\s*==\s*"__main__"\s*:',
120
- '^\s*@unittest\.skip\(',
121
- '^\s*@unittest\.skipIf\(sys\.platform\.startswith\("win"\)',
122
- ]
123
- omit = [
124
- 'tests/run.py',
125
- ]
126
- skip_covered = false
127
-
128
- [tool.coverage.html]
129
- directory = '.tox/coverage/.coverage.html'
130
-
131
- [tool.flake8]
132
- filename = ['*.py','*.pyx']
133
- #include = ['tests']
134
- #exclude = ['.tox','*.egg','.git','__pycache__','build','_build','docs/_build','dist']
135
- max-line-length = 99
136
- ignore = ['E126','E203','E221','E251','E302','E701','E702','E731',
137
- 'E122','E127','E128','E222','E272','E241','E266','E226','E704',
138
- 'D100','D101','D102','D103','D104','D400','D401','D202',
139
- 'N806','N802','N803','N801',
140
- 'I100','W503']
141
- # (e.g. 'E4','W') default: 'E121','E123','126','226','E24','704'
142
- #select =
143
- #select = ['E','W','F','N','I']
144
- output-file = '.tox/lint/flake8out.txt'
145
- count = true
146
- #show-pep8,
147
- #show-source
148
- #verbose
149
- #quiet
annotate-1.0.18/setup.cfg DELETED
@@ -1,115 +0,0 @@
1
- [build_sphinx]
2
- source-dir = docs
3
- build-dir = build/docs
4
- builder = html
5
- all-files = True
6
- warning-is-error = True
7
-
8
- [tox:tox]
9
- envlist = py{37,38,39,310,311}, pypy{37,38,39}, coverage, docs
10
- minversion = 3.24.5
11
- isolated_build = True
12
- skip_missing_interpreters = true
13
- requires =
14
- tox-venv>=0.4.0
15
- tox-backticks>=0.3.0
16
- tox-tags>=0.2.0
17
- tox-run-before>=0.1.0
18
- {[base]setup_requires}
19
-
20
- [base]
21
- setup_requires =
22
- pip>=21.2.4
23
- setuptools>=63.2.0
24
- wheel>=0.37.1
25
- packagesubdir = annotate
26
-
27
- [testenv]
28
- passenv = WINDIR
29
- commands =
30
- {envpython} --version
31
- {envpython} -B -m tests {posargs}
32
- extras = test
33
- deps =
34
- {[base]setup_requires}
35
-
36
- [testenv:prepare]
37
- basepython = python3.7
38
- skip_install = true
39
- allowlist_externals =
40
- cmd
41
- .build
42
- commands =
43
- cmd /C if exist .build.cmd .build.cmd
44
-
45
- [testenv:coverage]
46
- basepython = python3.7
47
- commands =
48
- {envpython} -m coverage erase
49
- -{envpython} -B -m coverage run -m tests {posargs}
50
- {envpython} -m coverage report
51
- {envpython} -m coverage html
52
- deps =
53
- {[testenv]deps}
54
- coverage>=6.4.4
55
- diff-cover>=6.5.1
56
-
57
- [testenv:docs]
58
- basepython = python3.7
59
- commands =
60
- {envpython} -c "from setuptools import setup ; setup()" -v build_sphinx -b html -E
61
- {envpython} -c "from setuptools import setup ; setup()" -v build_sphinx -b linkcheck
62
- {envpython} -c "from setuptools import setup ; setup()" -v build_sphinx -b doctest
63
- extras = doc
64
- deps =
65
-
66
- [testenv:build]
67
- basepython = python3.7
68
- setenv =
69
- PKG_NAME=`{envpython} -c "from setuptools import setup ; setup()" --fullname`
70
- PKG_DIST=`{envpython} -c 'print("""{env:PKG_NAME}""".strip(), end="")'`
71
- PKG_PVER=`{envpython} -c 'import platform ; print("".join(platform.python_version_tuple()[:2]))'`
72
- commands =
73
- {[testenv]commands}
74
- {[testenv:docs]commands}
75
- {envpython} -c "from setuptools import setup ; setup()" --quiet sdist --formats=zip
76
- {envpython} -c "from setuptools import setup ; setup()" --quiet bdist_wheel
77
- {envpython} -m twine check dist/*
78
- extras =
79
- {[testenv]extras}
80
- {[testenv:docs]extras}
81
- deps =
82
- {[testenv]deps}
83
- {[testenv:docs]deps}
84
- twine>=4.0.1
85
-
86
- [testenv:publish]
87
- basepython = python3.7
88
- setenv =
89
- {[testenv:build]setenv}
90
- commands =
91
- {[testenv:build]commands}
92
- {envpython} -m twine upload dist/*
93
- extras =
94
- {[testenv:build]extras}
95
- deps =
96
- {[testenv:build]deps}
97
- twine>=4.0.1
98
-
99
- [testenv:lint]
100
- basepython = python3.7
101
- commands =
102
- {envpython} -m flake8p {envsitepackagesdir}/{[base]packagesubdir}/
103
- extras =
104
- deps =
105
- {[testenv]deps}
106
- flake8>=5.0.4
107
- flake8-pyproject>=1.1.0.post0
108
- flake8-docstrings>=1.6.0
109
- pep8-naming>=0.13.2
110
- flake8-builtins>=1.5.3
111
-
112
- [egg_info]
113
- tag_build =
114
- tag_date = 0
115
-
@@ -1,6 +0,0 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
4
-
5
- __import__("pkg_about").about()
6
- __copyright__ = f"Copyright (c) 2012-2022 {__author__}" # noqa
@@ -1,7 +0,0 @@
1
- # Copyright (c) 2012-2022 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
4
-
5
- from .__about__ import * ; del __about__ # noqa
6
-
7
- from ._annotate import * ; del _annotate # noqa
@@ -1,14 +0,0 @@
1
- setuptools>=63.2.0
2
- pkg_about>=1.0.7
3
-
4
- [doc]
5
- docutils<0.19,>=0.14
6
- Sphinx>=4.5.0
7
- sphinx-tabs>=3.4.1
8
- sphinx_copybutton>=0.5.0
9
- sphinxcontrib-spelling>=7.6.0
10
- restructuredtext-lint>=1.4.0
11
- nbsphinx>=0.8.9
12
-
13
- [test]
14
- deepdiff>=5.8.1
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes