renumerate 1.1.9__zip → 1.1.11__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.
Potentially problematic release.
This version of renumerate might be problematic. Click here for more details.
- renumerate-1.1.11/.readthedocs.yml +15 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/CHANGES.rst +9 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/LICENSE +1 -1
- {renumerate-1.1.9 → renumerate-1.1.11}/MANIFEST.in +2 -2
- {renumerate-1.1.9 → renumerate-1.1.11}/PKG-INFO +31 -12
- {renumerate-1.1.9 → renumerate-1.1.11}/README.rst +5 -6
- {renumerate-1.1.9 → renumerate-1.1.11}/docs/conf.py +1 -0
- renumerate-1.1.11/pyproject.toml +277 -0
- renumerate-1.1.11/setup.cfg +4 -0
- renumerate-1.1.11/src/renumerate/__about__.py +6 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate/__init__.py +2 -2
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate/_renumerate.py +2 -2
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate.egg-info/PKG-INFO +31 -12
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate.egg-info/SOURCES.txt +0 -1
- renumerate-1.1.11/src/renumerate.egg-info/requires.txt +16 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/tests/__init__.py +2 -2
- {renumerate-1.1.9 → renumerate-1.1.11}/tests/__main__.py +2 -2
- {renumerate-1.1.9 → renumerate-1.1.11}/tests/test_main.py +2 -2
- renumerate-1.1.9/.readthedocs.yml +0 -9
- renumerate-1.1.9/pyproject.toml +0 -149
- renumerate-1.1.9/setup.cfg +0 -115
- renumerate-1.1.9/src/renumerate/__about__.py +0 -6
- renumerate-1.1.9/src/renumerate.egg-info/requires.txt +0 -14
- {renumerate-1.1.9 → renumerate-1.1.11}/docs/CHANGES.rst +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/docs/README.rst +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/docs/_static/.keep +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/docs/_templates/.keep +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/docs/index.rst +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.1.9 → renumerate-1.1.11}/tests/data/.keep +0 -0
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.1.11 (2024-01-25)
|
|
5
|
+
-------------------
|
|
6
|
+
- Setup update (now based on tox >= 4.0).
|
|
7
|
+
- Cleanup.
|
|
8
|
+
|
|
9
|
+
1.1.10 (2022-10-18)
|
|
10
|
+
-------------------
|
|
11
|
+
- Tox configuration has been moved to pyproject.toml
|
|
12
|
+
|
|
4
13
|
1.1.9 (2022-08-22)
|
|
5
14
|
------------------
|
|
6
15
|
- Setup update.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.11
|
|
4
4
|
Summary: Reverse enumerate.
|
|
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/
|
|
9
|
+
License: zlib/libpng License ; https://opensource.org/license/zlib
|
|
10
10
|
Project-URL: Homepage, https://pypi.org/project/renumerate/
|
|
11
11
|
Project-URL: Documentation, https://renumerate.readthedocs.io/
|
|
12
12
|
Project-URL: Download, https://pypi.org/project/renumerate/
|
|
@@ -21,21 +21,32 @@ 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
29
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
|
-
Classifier: Programming Language :: Python :: Implementation :: Stackless
|
|
33
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.8.1
|
|
35
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
|
+
License-File: LICENSE
|
|
36
|
+
Requires-Dist: setuptools>=68.2.2
|
|
37
|
+
Requires-Dist: pkg-about>=1.1.3
|
|
36
38
|
Provides-Extra: doc
|
|
39
|
+
Requires-Dist: Sphinx>=7.1.2; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-toolbox>=3.5.0; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-tabs>=3.4.1; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-copybutton>=0.5.1; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinxcontrib-spelling>=7.7.0; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinx-lint>=0.6.7; extra == "doc"
|
|
45
|
+
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
|
+
Requires-Dist: nbsphinx>=0.8.10; extra == "doc"
|
|
37
47
|
Provides-Extra: test
|
|
38
|
-
|
|
48
|
+
Requires-Dist: deepdiff>=6.7.1; extra == "test"
|
|
49
|
+
Requires-Dist: rich>=13.7.0; extra == "test"
|
|
39
50
|
|
|
40
51
|
renumerate
|
|
41
52
|
==========
|
|
@@ -94,10 +105,9 @@ Installation
|
|
|
94
105
|
|
|
95
106
|
Prerequisites:
|
|
96
107
|
|
|
97
|
-
+ Python 3.
|
|
108
|
+
+ Python 3.8 or higher
|
|
98
109
|
|
|
99
110
|
* https://www.python.org/
|
|
100
|
-
* 3.7 is a primary test environment.
|
|
101
111
|
|
|
102
112
|
+ pip and setuptools
|
|
103
113
|
|
|
@@ -119,7 +129,7 @@ Prerequisites:
|
|
|
119
129
|
|
|
120
130
|
python -m pip install --upgrade tox
|
|
121
131
|
|
|
122
|
-
Visit `
|
|
132
|
+
Visit `Development page`_.
|
|
123
133
|
|
|
124
134
|
Installation from sources:
|
|
125
135
|
|
|
@@ -144,9 +154,9 @@ or on development mode:
|
|
|
144
154
|
License
|
|
145
155
|
=======
|
|
146
156
|
|
|
147
|
-
| Copyright (c) 2016-
|
|
157
|
+
| Copyright (c) 2016-2024 Adam Karpierz
|
|
148
158
|
| Licensed under the zlib/libpng License
|
|
149
|
-
| https://opensource.org/
|
|
159
|
+
| https://opensource.org/license/zlib
|
|
150
160
|
| Please refer to the accompanying LICENSE file.
|
|
151
161
|
|
|
152
162
|
Authors
|
|
@@ -157,7 +167,7 @@ Authors
|
|
|
157
167
|
.. |package| replace:: renumerate
|
|
158
168
|
.. |package_bold| replace:: **renumerate**
|
|
159
169
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
160
|
-
..
|
|
170
|
+
.. _Development page: https://github.com/karpierz/renumerate
|
|
161
171
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
162
172
|
.. _Documentation: https://renumerate.readthedocs.io/
|
|
163
173
|
.. _enumerate: https://docs.python.org/library/functions.html#enumerate
|
|
@@ -165,6 +175,15 @@ Authors
|
|
|
165
175
|
Changelog
|
|
166
176
|
=========
|
|
167
177
|
|
|
178
|
+
1.1.11 (2024-01-25)
|
|
179
|
+
-------------------
|
|
180
|
+
- Setup update (now based on tox >= 4.0).
|
|
181
|
+
- Cleanup.
|
|
182
|
+
|
|
183
|
+
1.1.10 (2022-10-18)
|
|
184
|
+
-------------------
|
|
185
|
+
- Tox configuration has been moved to pyproject.toml
|
|
186
|
+
|
|
168
187
|
1.1.9 (2022-08-22)
|
|
169
188
|
------------------
|
|
170
189
|
- Setup update.
|
|
@@ -55,10 +55,9 @@ Installation
|
|
|
55
55
|
|
|
56
56
|
Prerequisites:
|
|
57
57
|
|
|
58
|
-
+ Python 3.
|
|
58
|
+
+ Python 3.8 or higher
|
|
59
59
|
|
|
60
60
|
* https://www.python.org/
|
|
61
|
-
* 3.7 is a primary test environment.
|
|
62
61
|
|
|
63
62
|
+ pip and setuptools
|
|
64
63
|
|
|
@@ -80,7 +79,7 @@ Prerequisites:
|
|
|
80
79
|
|
|
81
80
|
python -m pip install --upgrade tox
|
|
82
81
|
|
|
83
|
-
Visit `
|
|
82
|
+
Visit `Development page`_.
|
|
84
83
|
|
|
85
84
|
Installation from sources:
|
|
86
85
|
|
|
@@ -105,9 +104,9 @@ or on development mode:
|
|
|
105
104
|
License
|
|
106
105
|
=======
|
|
107
106
|
|
|
108
|
-
| Copyright (c) 2016-
|
|
107
|
+
| Copyright (c) 2016-2024 Adam Karpierz
|
|
109
108
|
| Licensed under the zlib/libpng License
|
|
110
|
-
| https://opensource.org/
|
|
109
|
+
| https://opensource.org/license/zlib
|
|
111
110
|
| Please refer to the accompanying LICENSE file.
|
|
112
111
|
|
|
113
112
|
Authors
|
|
@@ -118,7 +117,7 @@ Authors
|
|
|
118
117
|
.. |package| replace:: renumerate
|
|
119
118
|
.. |package_bold| replace:: **renumerate**
|
|
120
119
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
121
|
-
..
|
|
120
|
+
.. _Development page: https://github.com/karpierz/renumerate
|
|
122
121
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
123
122
|
.. _Documentation: https://renumerate.readthedocs.io/
|
|
124
123
|
.. _enumerate: https://docs.python.org/library/functions.html#enumerate
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
# Copyright (c) 2016 Adam Karpierz
|
|
2
|
+
# Licensed under the zlib/libpng License
|
|
3
|
+
# https://opensource.org/license/zlib
|
|
4
|
+
|
|
5
|
+
[build-system]
|
|
6
|
+
build-backend = 'setuptools.build_meta'
|
|
7
|
+
requires = ['setuptools>=68.2.2', 'wheel>=0.42.0', 'packaging>=23.2.0', 'tox>=4.11.3']
|
|
8
|
+
|
|
9
|
+
[project]
|
|
10
|
+
name = 'renumerate'
|
|
11
|
+
version = '1.1.11'
|
|
12
|
+
description = 'Reverse enumerate.'
|
|
13
|
+
urls.Homepage = 'https://pypi.org/project/renumerate/'
|
|
14
|
+
urls.Documentation = 'https://renumerate.readthedocs.io/'
|
|
15
|
+
urls.Download = 'https://pypi.org/project/renumerate/'
|
|
16
|
+
urls.Source = 'https://github.com/karpierz/renumerate'
|
|
17
|
+
urls.Issues = 'https://github.com/karpierz/renumerate/issues'
|
|
18
|
+
license = { text = 'zlib/libpng License ; https://opensource.org/license/zlib' }
|
|
19
|
+
authors = [
|
|
20
|
+
{ name = 'Adam Karpierz' },
|
|
21
|
+
{ email = 'adam@karpierz.net' },
|
|
22
|
+
]
|
|
23
|
+
maintainers = [
|
|
24
|
+
{ name = 'Adam Karpierz' },
|
|
25
|
+
{ email = 'adam@karpierz.net' },
|
|
26
|
+
]
|
|
27
|
+
keywords = ['renumerate', 'enumerate']
|
|
28
|
+
classifiers = [
|
|
29
|
+
'Development Status :: 5 - Production/Stable',
|
|
30
|
+
'Intended Audience :: Developers',
|
|
31
|
+
'License :: OSI Approved :: zlib/libpng License',
|
|
32
|
+
'Operating System :: OS Independent',
|
|
33
|
+
'Natural Language :: Polish',
|
|
34
|
+
'Programming Language :: Python',
|
|
35
|
+
'Programming Language :: Python :: 3',
|
|
36
|
+
'Programming Language :: Python :: 3.8',
|
|
37
|
+
'Programming Language :: Python :: 3.9',
|
|
38
|
+
'Programming Language :: Python :: 3.10',
|
|
39
|
+
'Programming Language :: Python :: 3.11',
|
|
40
|
+
'Programming Language :: Python :: 3.12',
|
|
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.1,<4.0.0'
|
|
47
|
+
dependencies = [
|
|
48
|
+
# mandatory
|
|
49
|
+
'setuptools>=68.2.2',
|
|
50
|
+
'pkg-about>=1.1.3',
|
|
51
|
+
# others
|
|
52
|
+
]
|
|
53
|
+
dynamic = ['readme']
|
|
54
|
+
[project.optional-dependencies]
|
|
55
|
+
doc = [
|
|
56
|
+
'Sphinx>=7.1.2',
|
|
57
|
+
'sphinx-toolbox>=3.5.0',
|
|
58
|
+
'sphinx-tabs>=3.4.1',
|
|
59
|
+
'sphinx-copybutton>=0.5.1',
|
|
60
|
+
'sphinxcontrib-spelling>=7.7.0',
|
|
61
|
+
'sphinx-lint>=0.6.7',
|
|
62
|
+
'restructuredtext-lint>=1.4.0',
|
|
63
|
+
'nbsphinx>=0.8.10',
|
|
64
|
+
]
|
|
65
|
+
test = [
|
|
66
|
+
'deepdiff>=6.7.1',
|
|
67
|
+
'rich>=13.7.0',
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[project.scripts]
|
|
71
|
+
#'renumerate' = 'renumerate.__main__:main'
|
|
72
|
+
|
|
73
|
+
[project.gui-scripts]
|
|
74
|
+
#'renumerate-gui' = 'renumerate:main_gui'
|
|
75
|
+
|
|
76
|
+
#[project.entry-points.'renumerate.magical']
|
|
77
|
+
#epoint = 'renumerate: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
|
+
#'renumerate.tests' = 'tests'
|
|
95
|
+
|
|
96
|
+
[tool.setuptools.package-data]
|
|
97
|
+
renumerate = [
|
|
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
|
+
'renumerate',
|
|
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}, pypy{39,310}win, docs
|
|
162
|
+
labels =
|
|
163
|
+
py = py{38,39,310,311,312}, pypy{39,310}win
|
|
164
|
+
prepare = prepare
|
|
165
|
+
coverage = coverage
|
|
166
|
+
lint = lint
|
|
167
|
+
docs = docs
|
|
168
|
+
build = py{38,39,310,311,312}, pypy{39,310}win, docs, build
|
|
169
|
+
deploy = py{38,39,310,311,312}, pypy{39,310}win, docs, build, publish
|
|
170
|
+
minversion = 4.11.3
|
|
171
|
+
skip_missing_interpreters = true
|
|
172
|
+
requires =
|
|
173
|
+
{[base]deps}
|
|
174
|
+
virtualenv>=20.25.0
|
|
175
|
+
tox-backtick>=0.4.3
|
|
176
|
+
tox-tags>=0.2.0
|
|
177
|
+
|
|
178
|
+
[base]
|
|
179
|
+
basepython = python3.11
|
|
180
|
+
deps =
|
|
181
|
+
pip>=23.3.2
|
|
182
|
+
setuptools>=68.2.2
|
|
183
|
+
wheel>=0.42.0
|
|
184
|
+
packagesubdir = renumerate
|
|
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:pypy39win]
|
|
198
|
+
basepython = C:\\PyPy39\\pypy.exe
|
|
199
|
+
|
|
200
|
+
[testenv:pypy310win]
|
|
201
|
+
basepython = C:\\PyPy310\\pypy.exe
|
|
202
|
+
|
|
203
|
+
[testenv:prepare]
|
|
204
|
+
basepython = {[base]basepython}
|
|
205
|
+
skip_install = true
|
|
206
|
+
allowlist_externals =
|
|
207
|
+
cmd
|
|
208
|
+
.build
|
|
209
|
+
commands =
|
|
210
|
+
cmd /C if exist .build.cmd .build.cmd
|
|
211
|
+
|
|
212
|
+
[testenv:coverage]
|
|
213
|
+
basepython = {[base]basepython}
|
|
214
|
+
commands =
|
|
215
|
+
{envpython} -m coverage erase
|
|
216
|
+
-{envpython} -m coverage run -m tests {posargs}
|
|
217
|
+
{envpython} -m coverage report
|
|
218
|
+
{envpython} -m coverage html
|
|
219
|
+
deps =
|
|
220
|
+
{[testenv]deps}
|
|
221
|
+
coverage>=7.4.0
|
|
222
|
+
covdefaults>=2.3.0
|
|
223
|
+
diff-cover>=7.7.0
|
|
224
|
+
|
|
225
|
+
[testenv:docs]
|
|
226
|
+
basepython = {[base]basepython}
|
|
227
|
+
commands =
|
|
228
|
+
{envpython} -m sphinxlint --ignore .tox --ignore build --ignore dist
|
|
229
|
+
#{envpython} -m sphinx.apidoc -f {envsitepackagesdir}/{[base]packagesubdir}
|
|
230
|
+
{envpython} -m sphinx.cmd.build -W -a -b html -E ./docs ./build/docs/html
|
|
231
|
+
{envpython} -m sphinx.cmd.build -W -a -b linkcheck ./docs ./build/docs/html
|
|
232
|
+
{envpython} -m sphinx.cmd.build -W -a -b doctest ./docs ./build/docs/html
|
|
233
|
+
extras = doc
|
|
234
|
+
deps =
|
|
235
|
+
|
|
236
|
+
[testenv:build]
|
|
237
|
+
depends = py{38,39,310,311,312}, pypy{39,310}win, docs
|
|
238
|
+
basepython = {[base]basepython}
|
|
239
|
+
setenv =
|
|
240
|
+
{[testenv]setenv}
|
|
241
|
+
PKG_PVER=`{envpython} -W ignore -c "import platform ; print(''.join(platform.python_version_tuple()[:2]), end='')" 2> nul`
|
|
242
|
+
PKG_NAME=`{envpython} -W ignore -c "import setuptools ; setuptools._distutils.core._setup_stop_after='config' ; print(setuptools.setup().metadata.get_name(), end='')" 2> nul`
|
|
243
|
+
PKG_DIST=`{envpython} -W ignore -c "import setuptools ; setuptools._distutils.core._setup_stop_after='config' ; print(setuptools.setup().metadata.get_fullname(), end='')" 2> nul`
|
|
244
|
+
commands =
|
|
245
|
+
{envpython} -W ignore -c "from setuptools import setup ; setup()" --quiet sdist --formats=zip
|
|
246
|
+
{envpython} -W ignore -c "from setuptools import setup ; setup()" --quiet bdist_wheel
|
|
247
|
+
# check out for PyPi
|
|
248
|
+
{envpython} -m twine check dist/*
|
|
249
|
+
deps =
|
|
250
|
+
{[testenv]deps}
|
|
251
|
+
twine>=4.0.2
|
|
252
|
+
|
|
253
|
+
[testenv:publish]
|
|
254
|
+
depends = build
|
|
255
|
+
basepython = {[base]basepython}
|
|
256
|
+
skip_install = true
|
|
257
|
+
commands =
|
|
258
|
+
# publish on PyPi
|
|
259
|
+
{envpython} -m twine upload dist/*
|
|
260
|
+
extras =
|
|
261
|
+
deps =
|
|
262
|
+
twine>=4.0.2
|
|
263
|
+
|
|
264
|
+
[testenv:lint]
|
|
265
|
+
basepython = {[base]basepython}
|
|
266
|
+
commands =
|
|
267
|
+
{envpython} -m flake8 {envsitepackagesdir}/{[base]packagesubdir}/
|
|
268
|
+
extras =
|
|
269
|
+
deps =
|
|
270
|
+
{[testenv]deps}
|
|
271
|
+
flake8>=7.0.0
|
|
272
|
+
flake8-pyproject>=1.2.3
|
|
273
|
+
flake8-docstrings>=1.7.0
|
|
274
|
+
pep8-naming>=0.13.3
|
|
275
|
+
flake8-builtins>=2.2.0
|
|
276
|
+
flake8-deprecated>=2.2.1
|
|
277
|
+
"""
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.11
|
|
4
4
|
Summary: Reverse enumerate.
|
|
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/
|
|
9
|
+
License: zlib/libpng License ; https://opensource.org/license/zlib
|
|
10
10
|
Project-URL: Homepage, https://pypi.org/project/renumerate/
|
|
11
11
|
Project-URL: Documentation, https://renumerate.readthedocs.io/
|
|
12
12
|
Project-URL: Download, https://pypi.org/project/renumerate/
|
|
@@ -21,21 +21,32 @@ 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
29
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
|
-
Classifier: Programming Language :: Python :: Implementation :: Stackless
|
|
33
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.8.1
|
|
35
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
|
+
License-File: LICENSE
|
|
36
|
+
Requires-Dist: setuptools>=68.2.2
|
|
37
|
+
Requires-Dist: pkg-about>=1.1.3
|
|
36
38
|
Provides-Extra: doc
|
|
39
|
+
Requires-Dist: Sphinx>=7.1.2; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-toolbox>=3.5.0; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-tabs>=3.4.1; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-copybutton>=0.5.1; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinxcontrib-spelling>=7.7.0; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinx-lint>=0.6.7; extra == "doc"
|
|
45
|
+
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
|
+
Requires-Dist: nbsphinx>=0.8.10; extra == "doc"
|
|
37
47
|
Provides-Extra: test
|
|
38
|
-
|
|
48
|
+
Requires-Dist: deepdiff>=6.7.1; extra == "test"
|
|
49
|
+
Requires-Dist: rich>=13.7.0; extra == "test"
|
|
39
50
|
|
|
40
51
|
renumerate
|
|
41
52
|
==========
|
|
@@ -94,10 +105,9 @@ Installation
|
|
|
94
105
|
|
|
95
106
|
Prerequisites:
|
|
96
107
|
|
|
97
|
-
+ Python 3.
|
|
108
|
+
+ Python 3.8 or higher
|
|
98
109
|
|
|
99
110
|
* https://www.python.org/
|
|
100
|
-
* 3.7 is a primary test environment.
|
|
101
111
|
|
|
102
112
|
+ pip and setuptools
|
|
103
113
|
|
|
@@ -119,7 +129,7 @@ Prerequisites:
|
|
|
119
129
|
|
|
120
130
|
python -m pip install --upgrade tox
|
|
121
131
|
|
|
122
|
-
Visit `
|
|
132
|
+
Visit `Development page`_.
|
|
123
133
|
|
|
124
134
|
Installation from sources:
|
|
125
135
|
|
|
@@ -144,9 +154,9 @@ or on development mode:
|
|
|
144
154
|
License
|
|
145
155
|
=======
|
|
146
156
|
|
|
147
|
-
| Copyright (c) 2016-
|
|
157
|
+
| Copyright (c) 2016-2024 Adam Karpierz
|
|
148
158
|
| Licensed under the zlib/libpng License
|
|
149
|
-
| https://opensource.org/
|
|
159
|
+
| https://opensource.org/license/zlib
|
|
150
160
|
| Please refer to the accompanying LICENSE file.
|
|
151
161
|
|
|
152
162
|
Authors
|
|
@@ -157,7 +167,7 @@ Authors
|
|
|
157
167
|
.. |package| replace:: renumerate
|
|
158
168
|
.. |package_bold| replace:: **renumerate**
|
|
159
169
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
160
|
-
..
|
|
170
|
+
.. _Development page: https://github.com/karpierz/renumerate
|
|
161
171
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
162
172
|
.. _Documentation: https://renumerate.readthedocs.io/
|
|
163
173
|
.. _enumerate: https://docs.python.org/library/functions.html#enumerate
|
|
@@ -165,6 +175,15 @@ Authors
|
|
|
165
175
|
Changelog
|
|
166
176
|
=========
|
|
167
177
|
|
|
178
|
+
1.1.11 (2024-01-25)
|
|
179
|
+
-------------------
|
|
180
|
+
- Setup update (now based on tox >= 4.0).
|
|
181
|
+
- Cleanup.
|
|
182
|
+
|
|
183
|
+
1.1.10 (2022-10-18)
|
|
184
|
+
-------------------
|
|
185
|
+
- Tox configuration has been moved to pyproject.toml
|
|
186
|
+
|
|
168
187
|
1.1.9 (2022-08-22)
|
|
169
188
|
------------------
|
|
170
189
|
- Setup update.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
setuptools>=68.2.2
|
|
2
|
+
pkg-about>=1.1.3
|
|
3
|
+
|
|
4
|
+
[doc]
|
|
5
|
+
Sphinx>=7.1.2
|
|
6
|
+
sphinx-toolbox>=3.5.0
|
|
7
|
+
sphinx-tabs>=3.4.1
|
|
8
|
+
sphinx-copybutton>=0.5.1
|
|
9
|
+
sphinxcontrib-spelling>=7.7.0
|
|
10
|
+
sphinx-lint>=0.6.7
|
|
11
|
+
restructuredtext-lint>=1.4.0
|
|
12
|
+
nbsphinx>=0.8.10
|
|
13
|
+
|
|
14
|
+
[test]
|
|
15
|
+
deepdiff>=6.7.1
|
|
16
|
+
rich>=13.7.0
|
renumerate-1.1.9/pyproject.toml
DELETED
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
# Copyright (c) 2016-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 = 'renumerate'
|
|
11
|
-
version = '1.1.9'
|
|
12
|
-
description = 'Reverse enumerate.'
|
|
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 = ['renumerate', 'enumerate']
|
|
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/renumerate/'
|
|
65
|
-
Documentation = 'https://renumerate.readthedocs.io/'
|
|
66
|
-
Download = 'https://pypi.org/project/renumerate/'
|
|
67
|
-
Source = 'https://github.com/karpierz/renumerate'
|
|
68
|
-
Issues = 'https://github.com/karpierz/renumerate/issues'
|
|
69
|
-
|
|
70
|
-
[project.scripts]
|
|
71
|
-
#renumerate = 'renumerate.__main__:main'
|
|
72
|
-
|
|
73
|
-
[project.gui-scripts]
|
|
74
|
-
#renumerate-gui = 'renumerate:main_gui'
|
|
75
|
-
|
|
76
|
-
#[project.entry-points.'renumerate.magical']
|
|
77
|
-
#epoint = 'renumerate: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
|
-
#'renumerate.tests' = 'tests'
|
|
95
|
-
|
|
96
|
-
[tool.setuptools.package-data]
|
|
97
|
-
renumerate = [
|
|
98
|
-
]
|
|
99
|
-
|
|
100
|
-
[tool.coverage.run]
|
|
101
|
-
source = [
|
|
102
|
-
'renumerate',
|
|
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
|
renumerate-1.1.9/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 = renumerate
|
|
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
|
-
|
|
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
|