slownie 1.2.3__zip → 1.3.0__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 (29) hide show
  1. {slownie-1.2.3 → slownie-1.3.0}/.readthedocs.yml +1 -1
  2. {slownie-1.2.3 → slownie-1.3.0}/CHANGES.rst +10 -0
  3. {slownie-1.2.3 → slownie-1.3.0}/MANIFEST.in +1 -2
  4. {slownie-1.2.3 → slownie-1.3.0}/PKG-INFO +27 -16
  5. {slownie-1.2.3 → slownie-1.3.0}/README.rst +3 -2
  6. {slownie-1.2.3 → slownie-1.3.0}/docs/conf.py +1 -1
  7. {slownie-1.2.3 → slownie-1.3.0}/pyproject.toml +35 -36
  8. slownie-1.3.0/src/slownie/__about__.py +4 -0
  9. {slownie-1.2.3 → slownie-1.3.0}/src/slownie/__init__.py +1 -2
  10. {slownie-1.2.3 → slownie-1.3.0}/src/slownie/_slownie.py +1 -2
  11. {slownie-1.2.3 → slownie-1.3.0}/src/slownie.egg-info/PKG-INFO +27 -16
  12. slownie-1.3.0/src/slownie.egg-info/requires.txt +16 -0
  13. {slownie-1.2.3 → slownie-1.3.0}/tests/__init__.py +1 -2
  14. {slownie-1.2.3 → slownie-1.3.0}/tests/__main__.py +1 -2
  15. {slownie-1.2.3 → slownie-1.3.0}/tests/test_main.py +1 -2
  16. slownie-1.2.3/src/slownie/__about__.py +0 -6
  17. slownie-1.2.3/src/slownie.egg-info/requires.txt +0 -16
  18. {slownie-1.2.3 → slownie-1.3.0}/LICENSE +0 -0
  19. {slownie-1.2.3 → slownie-1.3.0}/docs/CHANGES.rst +0 -0
  20. {slownie-1.2.3 → slownie-1.3.0}/docs/README.rst +0 -0
  21. {slownie-1.2.3 → slownie-1.3.0}/docs/_static/.keep +0 -0
  22. {slownie-1.2.3 → slownie-1.3.0}/docs/_templates/.keep +0 -0
  23. {slownie-1.2.3 → slownie-1.3.0}/docs/index.rst +0 -0
  24. {slownie-1.2.3 → slownie-1.3.0}/setup.cfg +0 -0
  25. {slownie-1.2.3 → slownie-1.3.0}/src/slownie.egg-info/SOURCES.txt +0 -0
  26. {slownie-1.2.3 → slownie-1.3.0}/src/slownie.egg-info/dependency_links.txt +0 -0
  27. {slownie-1.2.3 → slownie-1.3.0}/src/slownie.egg-info/top_level.txt +0 -0
  28. {slownie-1.2.3 → slownie-1.3.0}/src/slownie.egg-info/zip-safe +0 -0
  29. {slownie-1.2.3 → slownie-1.3.0}/tests/data/.keep +0 -0
@@ -2,7 +2,7 @@ version: 2
2
2
  build:
3
3
  os: "ubuntu-22.04"
4
4
  tools:
5
- python: "3.11"
5
+ python: "3.12"
6
6
  python:
7
7
  install:
8
8
  - method: pip
@@ -1,6 +1,16 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.0 (2024-09-30)
5
+ ------------------
6
+ - Drop support for Python 3.8
7
+ - Setup (dependencies) update.
8
+
9
+ 1.2.4 (2024-08-13)
10
+ ------------------
11
+ - Add support for Python 3.13
12
+ - Setup (dependencies) update.
13
+
4
14
  1.2.3 (2024-01-26)
5
15
  ------------------
6
16
  - Setup update (now based on tox >= 4.0).
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  include README.rst
6
5
  include CHANGES.rst
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: slownie
3
- Version: 1.2.3
3
+ Version: 1.3.0
4
4
  Summary: Polish spelled-out numbers and amounts.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -21,32 +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.8
25
24
  Classifier: Programming Language :: Python :: 3.9
26
25
  Classifier: Programming Language :: Python :: 3.10
27
26
  Classifier: Programming Language :: Python :: 3.11
28
27
  Classifier: Programming Language :: Python :: 3.12
28
+ Classifier: Programming Language :: Python :: 3.13
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
32
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
- Requires-Python: <4.0.0,>=3.8.1
33
+ Requires-Python: <4.0.0,>=3.9.0
34
34
  Description-Content-Type: text/x-rst; charset=UTF-8
35
35
  License-File: LICENSE
36
- Requires-Dist: setuptools>=68.2.2
37
- Requires-Dist: pkg-about>=1.1.5
36
+ Requires-Dist: setuptools>=75.1.0
37
+ Requires-Dist: pkg-about>=1.2.0
38
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"
39
+ Requires-Dist: Sphinx>=7.4.7; extra == "doc"
40
+ Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
41
+ Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
42
+ Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
43
+ Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
44
+ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
45
45
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
46
- Requires-Dist: nbsphinx>=0.8.10; extra == "doc"
46
+ Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
47
47
  Provides-Extra: test
48
- Requires-Dist: deepdiff>=6.7.1; extra == "test"
49
- Requires-Dist: rich>=13.7.0; extra == "test"
48
+ Requires-Dist: deepdiff>=8.0.1; extra == "test"
49
+ Requires-Dist: rich>=13.8.1; extra == "test"
50
50
 
51
51
  slownie
52
52
  =======
@@ -84,7 +84,7 @@ Installation
84
84
 
85
85
  Prerequisites:
86
86
 
87
- + Python 3.8 or higher
87
+ + Python 3.9 or higher
88
88
 
89
89
  * https://www.python.org/
90
90
 
@@ -133,7 +133,7 @@ or on development mode:
133
133
  License
134
134
  =======
135
135
 
136
- | Copyright (c) 2016-2024 Adam Karpierz
136
+ | |copyright|
137
137
  | Licensed under the zlib/libpng License
138
138
  | https://opensource.org/license/zlib
139
139
  | Please refer to the accompanying LICENSE file.
@@ -145,6 +145,7 @@ Authors
145
145
 
146
146
  .. |package| replace:: slownie
147
147
  .. |package_bold| replace:: **slownie**
148
+ .. |copyright| replace:: Copyright (c) 2016-2024 Adam Karpierz
148
149
  .. |respository| replace:: https://github.com/karpierz/slownie.git
149
150
  .. _Development page: https://github.com/karpierz/slownie
150
151
  .. _PyPI record: https://pypi.org/project/slownie/
@@ -153,6 +154,16 @@ Authors
153
154
  Changelog
154
155
  =========
155
156
 
157
+ 1.3.0 (2024-09-30)
158
+ ------------------
159
+ - Drop support for Python 3.8
160
+ - Setup (dependencies) update.
161
+
162
+ 1.2.4 (2024-08-13)
163
+ ------------------
164
+ - Add support for Python 3.13
165
+ - Setup (dependencies) update.
166
+
156
167
  1.2.3 (2024-01-26)
157
168
  ------------------
158
169
  - Setup update (now based on tox >= 4.0).
@@ -34,7 +34,7 @@ Installation
34
34
 
35
35
  Prerequisites:
36
36
 
37
- + Python 3.8 or higher
37
+ + Python 3.9 or higher
38
38
 
39
39
  * https://www.python.org/
40
40
 
@@ -83,7 +83,7 @@ or on development mode:
83
83
  License
84
84
  =======
85
85
 
86
- | Copyright (c) 2016-2024 Adam Karpierz
86
+ | |copyright|
87
87
  | Licensed under the zlib/libpng License
88
88
  | https://opensource.org/license/zlib
89
89
  | Please refer to the accompanying LICENSE file.
@@ -95,6 +95,7 @@ Authors
95
95
 
96
96
  .. |package| replace:: slownie
97
97
  .. |package_bold| replace:: **slownie**
98
+ .. |copyright| replace:: Copyright (c) 2016-2024 Adam Karpierz
98
99
  .. |respository| replace:: https://github.com/karpierz/slownie.git
99
100
  .. _Development page: https://github.com/karpierz/slownie
100
101
  .. _PyPI record: https://pypi.org/project/slownie/
@@ -34,7 +34,7 @@ release = about.__version__
34
34
 
35
35
  # If your documentation needs a minimal Sphinx version, state it here.
36
36
  #
37
- needs_sphinx = '3.4.3'
37
+ needs_sphinx = '7.4.7'
38
38
 
39
39
  # Add any Sphinx extension module names here, as strings. They can be
40
40
  # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
@@ -1,14 +1,13 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  [build-system]
6
5
  build-backend = 'setuptools.build_meta'
7
- requires = ['setuptools>=68.2.2', 'wheel>=0.42.0', 'packaging>=23.2.0', 'tox>=4.11.3']
6
+ requires = ['setuptools>=75.1.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.20.0']
8
7
 
9
8
  [project]
10
9
  name = 'slownie'
11
- version = '1.2.3'
10
+ version = '1.3.0'
12
11
  description = 'Polish spelled-out numbers and amounts.'
13
12
  urls.Homepage = 'https://pypi.org/project/slownie/'
14
13
  urls.Documentation = 'https://slownie.readthedocs.io/'
@@ -33,38 +32,38 @@ classifiers = [
33
32
  'Natural Language :: Polish',
34
33
  'Programming Language :: Python',
35
34
  'Programming Language :: Python :: 3',
36
- 'Programming Language :: Python :: 3.8',
37
35
  'Programming Language :: Python :: 3.9',
38
36
  'Programming Language :: Python :: 3.10',
39
37
  'Programming Language :: Python :: 3.11',
40
38
  'Programming Language :: Python :: 3.12',
39
+ 'Programming Language :: Python :: 3.13',
41
40
  'Programming Language :: Python :: 3 :: Only',
42
41
  'Programming Language :: Python :: Implementation :: CPython',
43
42
  'Programming Language :: Python :: Implementation :: PyPy',
44
43
  'Topic :: Software Development :: Libraries :: Python Modules',
45
44
  ]
46
- requires-python = '>=3.8.1,<4.0.0'
45
+ requires-python = '>=3.9.0,<4.0.0'
47
46
  dependencies = [
48
47
  # mandatory
49
- 'setuptools>=68.2.2',
50
- 'pkg-about>=1.1.5',
48
+ 'setuptools>=75.1.0',
49
+ 'pkg-about>=1.2.0',
51
50
  # others
52
51
  ]
53
52
  dynamic = ['readme']
54
53
  [project.optional-dependencies]
55
54
  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',
55
+ 'Sphinx>=7.4.7',
56
+ 'sphinx-toolbox>=3.8.0',
57
+ 'sphinx-tabs>=3.4.5',
58
+ 'sphinx-copybutton>=0.5.2',
59
+ 'sphinxcontrib-spelling>=8.0.0',
60
+ 'sphinx-lint>=1.0.0',
62
61
  'restructuredtext-lint>=1.4.0',
63
- 'nbsphinx>=0.8.10',
62
+ 'nbsphinx>=0.9.5',
64
63
  ]
65
64
  test = [
66
- 'deepdiff>=6.7.1',
67
- 'rich>=13.7.0',
65
+ 'deepdiff>=8.0.1',
66
+ 'rich>=13.8.1',
68
67
  ]
69
68
 
70
69
  [project.scripts]
@@ -158,29 +157,29 @@ count = true
158
157
  [tool.tox]
159
158
  legacy_tox_ini = """
160
159
  [tox]
161
- envlist = py{38,39,310,311,312}, pypy{39,310}, docs
160
+ envlist = py{39,310,311,312,313}, pypy{39,310}, docs
162
161
  labels =
163
- py = py{38,39,310,311,312}, pypy{39,310}
162
+ py = py{39,310,311,312,313}, pypy{39,310}
164
163
  prepare = prepare
165
164
  coverage = coverage
166
165
  lint = lint
167
166
  docs = docs
168
- build = py{38,39,310,311,312}, pypy{39,310}, docs, build
169
- deploy = py{38,39,310,311,312}, pypy{39,310}, docs, build, publish
170
- minversion = 4.11.3
167
+ build = py{39,310,311,312,313}, pypy{39,310}, docs, build
168
+ deploy = py{39,310,311,312,313}, pypy{39,310}, docs, build, publish
169
+ minversion = 4.20.0
171
170
  skip_missing_interpreters = true
172
171
  requires =
173
172
  {[base]deps}
174
- virtualenv>=20.25.0
175
- tox-backtick>=0.4.4
173
+ virtualenv>=20.26.6
174
+ tox-backtick>=0.5.0
176
175
  tox-tags>=0.2.0
177
176
 
178
177
  [base]
179
- basepython = python3.11
178
+ basepython = python3.12
180
179
  deps =
181
- pip>=23.3.2
182
- setuptools>=68.2.2
183
- wheel>=0.42.0
180
+ pip>=24.2.0
181
+ setuptools>=75.1.0
182
+ wheel>=0.44.0
184
183
  packagesubdir = slownie
185
184
 
186
185
  [testenv]
@@ -212,9 +211,9 @@ commands =
212
211
  {envpython} -m coverage html
213
212
  deps =
214
213
  {[testenv]deps}
215
- coverage>=7.4.0
214
+ coverage>=7.6.1
216
215
  covdefaults>=2.3.0
217
- diff-cover>=7.7.0
216
+ diff-cover>=9.2.0
218
217
 
219
218
  [testenv:docs]
220
219
  basepython = {[base]basepython}
@@ -228,7 +227,7 @@ extras = doc
228
227
  deps =
229
228
 
230
229
  [testenv:build]
231
- depends = py{38,39,310,311,312}, pypy{39,310}, docs
230
+ depends = py{39,310,311,312,313}, pypy{39,310}, docs
232
231
  basepython = {[base]basepython}
233
232
  setenv =
234
233
  {[testenv]setenv}
@@ -242,7 +241,7 @@ commands =
242
241
  {envpython} -m twine check dist/*
243
242
  deps =
244
243
  {[testenv]deps}
245
- twine>=4.0.2
244
+ twine>=5.1.1
246
245
 
247
246
  [testenv:publish]
248
247
  depends = build
@@ -253,7 +252,7 @@ commands =
253
252
  {envpython} -m twine upload dist/*
254
253
  extras =
255
254
  deps =
256
- twine>=4.0.2
255
+ twine>=5.1.1
257
256
 
258
257
  [testenv:lint]
259
258
  basepython = {[base]basepython}
@@ -262,10 +261,10 @@ commands =
262
261
  extras =
263
262
  deps =
264
263
  {[testenv]deps}
265
- flake8>=7.0.0
264
+ flake8>=7.1.1
266
265
  flake8-pyproject>=1.2.3
267
266
  flake8-docstrings>=1.7.0
268
- pep8-naming>=0.13.3
269
- flake8-builtins>=2.2.0
267
+ pep8-naming>=0.14.1
268
+ flake8-builtins>=2.5.0
270
269
  flake8-deprecated>=2.2.1
271
270
  """
@@ -0,0 +1,4 @@
1
+ # Copyright (c) 2016 Adam Karpierz
2
+ # SPDX-License-Identifier: Zlib
3
+
4
+ __import__("pkg_about").about()
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  from .__about__ import * ; del __about__ # noqa
6
5
 
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import math
6
5
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: slownie
3
- Version: 1.2.3
3
+ Version: 1.3.0
4
4
  Summary: Polish spelled-out numbers and amounts.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -21,32 +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.8
25
24
  Classifier: Programming Language :: Python :: 3.9
26
25
  Classifier: Programming Language :: Python :: 3.10
27
26
  Classifier: Programming Language :: Python :: 3.11
28
27
  Classifier: Programming Language :: Python :: 3.12
28
+ Classifier: Programming Language :: Python :: 3.13
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
32
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
- Requires-Python: <4.0.0,>=3.8.1
33
+ Requires-Python: <4.0.0,>=3.9.0
34
34
  Description-Content-Type: text/x-rst; charset=UTF-8
35
35
  License-File: LICENSE
36
- Requires-Dist: setuptools>=68.2.2
37
- Requires-Dist: pkg-about>=1.1.5
36
+ Requires-Dist: setuptools>=75.1.0
37
+ Requires-Dist: pkg-about>=1.2.0
38
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"
39
+ Requires-Dist: Sphinx>=7.4.7; extra == "doc"
40
+ Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
41
+ Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
42
+ Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
43
+ Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
44
+ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
45
45
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
46
- Requires-Dist: nbsphinx>=0.8.10; extra == "doc"
46
+ Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
47
47
  Provides-Extra: test
48
- Requires-Dist: deepdiff>=6.7.1; extra == "test"
49
- Requires-Dist: rich>=13.7.0; extra == "test"
48
+ Requires-Dist: deepdiff>=8.0.1; extra == "test"
49
+ Requires-Dist: rich>=13.8.1; extra == "test"
50
50
 
51
51
  slownie
52
52
  =======
@@ -84,7 +84,7 @@ Installation
84
84
 
85
85
  Prerequisites:
86
86
 
87
- + Python 3.8 or higher
87
+ + Python 3.9 or higher
88
88
 
89
89
  * https://www.python.org/
90
90
 
@@ -133,7 +133,7 @@ or on development mode:
133
133
  License
134
134
  =======
135
135
 
136
- | Copyright (c) 2016-2024 Adam Karpierz
136
+ | |copyright|
137
137
  | Licensed under the zlib/libpng License
138
138
  | https://opensource.org/license/zlib
139
139
  | Please refer to the accompanying LICENSE file.
@@ -145,6 +145,7 @@ Authors
145
145
 
146
146
  .. |package| replace:: slownie
147
147
  .. |package_bold| replace:: **slownie**
148
+ .. |copyright| replace:: Copyright (c) 2016-2024 Adam Karpierz
148
149
  .. |respository| replace:: https://github.com/karpierz/slownie.git
149
150
  .. _Development page: https://github.com/karpierz/slownie
150
151
  .. _PyPI record: https://pypi.org/project/slownie/
@@ -153,6 +154,16 @@ Authors
153
154
  Changelog
154
155
  =========
155
156
 
157
+ 1.3.0 (2024-09-30)
158
+ ------------------
159
+ - Drop support for Python 3.8
160
+ - Setup (dependencies) update.
161
+
162
+ 1.2.4 (2024-08-13)
163
+ ------------------
164
+ - Add support for Python 3.13
165
+ - Setup (dependencies) update.
166
+
156
167
  1.2.3 (2024-01-26)
157
168
  ------------------
158
169
  - Setup update (now based on tox >= 4.0).
@@ -0,0 +1,16 @@
1
+ setuptools>=75.1.0
2
+ pkg-about>=1.2.0
3
+
4
+ [doc]
5
+ Sphinx>=7.4.7
6
+ sphinx-toolbox>=3.8.0
7
+ sphinx-tabs>=3.4.5
8
+ sphinx-copybutton>=0.5.2
9
+ sphinxcontrib-spelling>=8.0.0
10
+ sphinx-lint>=1.0.0
11
+ restructuredtext-lint>=1.4.0
12
+ nbsphinx>=0.9.5
13
+
14
+ [test]
15
+ deepdiff>=8.0.1
16
+ rich>=13.8.1
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  __all__ = ('top_dir', 'test_dir')
6
5
 
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import unittest
6
5
  import sys
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import unittest
6
5
 
@@ -1,6 +0,0 @@
1
- # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
4
-
5
- __import__("pkg_about").about()
6
- __copyright__ = f"Copyright (c) 2016-2024 {__author__}" # noqa
@@ -1,16 +0,0 @@
1
- setuptools>=68.2.2
2
- pkg-about>=1.1.5
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes