pkg-about 1.2.8__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.
- pkg_about-1.2.8/.readthedocs.yml +15 -0
- pkg_about-1.2.8/CHANGES.rst +105 -0
- pkg_about-1.2.8/LICENSE +19 -0
- pkg_about-1.2.8/MANIFEST.in +18 -0
- pkg_about-1.2.8/PKG-INFO +250 -0
- pkg_about-1.2.8/README.rst +90 -0
- pkg_about-1.2.8/docs/CHANGES.rst +2 -0
- pkg_about-1.2.8/docs/README.rst +1 -0
- pkg_about-1.2.8/docs/_static/.keep +0 -0
- pkg_about-1.2.8/docs/_templates/.keep +0 -0
- pkg_about-1.2.8/docs/conf.py +115 -0
- pkg_about-1.2.8/docs/index.rst +19 -0
- pkg_about-1.2.8/pyproject.toml +280 -0
- pkg_about-1.2.8/setup.cfg +12 -0
- pkg_about-1.2.8/src/pkg_about/__about__.py +4 -0
- pkg_about-1.2.8/src/pkg_about/__init__.py +6 -0
- pkg_about-1.2.8/src/pkg_about/_about.py +189 -0
- pkg_about-1.2.8/src/pkg_about.egg-info/PKG-INFO +250 -0
- pkg_about-1.2.8/src/pkg_about.egg-info/SOURCES.txt +26 -0
- pkg_about-1.2.8/src/pkg_about.egg-info/dependency_links.txt +1 -0
- pkg_about-1.2.8/src/pkg_about.egg-info/requires.txt +22 -0
- pkg_about-1.2.8/src/pkg_about.egg-info/top_level.txt +1 -0
- pkg_about-1.2.8/src/pkg_about.egg-info/zip-safe +1 -0
- pkg_about-1.2.8/tests/__init__.py +10 -0
- pkg_about-1.2.8/tests/__main__.py +36 -0
- pkg_about-1.2.8/tests/data/.keep +0 -0
- pkg_about-1.2.8/tests/test_main.py +92 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
Changelog
|
|
2
|
+
=========
|
|
3
|
+
|
|
4
|
+
1.2.8 (2025-01-25)
|
|
5
|
+
------------------
|
|
6
|
+
- Setup (dependencies) update.
|
|
7
|
+
|
|
8
|
+
1.2.7 (2025-01-20)
|
|
9
|
+
------------------
|
|
10
|
+
- Copyright year update.
|
|
11
|
+
- Setup (dependencies) update.
|
|
12
|
+
|
|
13
|
+
1.2.6 (2024-12-13)
|
|
14
|
+
------------------
|
|
15
|
+
- Source distribution (\*.tar.gz now) is compliant with PEP-0625.
|
|
16
|
+
- Setup (dependencies) update.
|
|
17
|
+
|
|
18
|
+
1.2.5 (2024-11-13)
|
|
19
|
+
------------------
|
|
20
|
+
- More unittests.
|
|
21
|
+
- 100% code linting.
|
|
22
|
+
- 100% code coverage.
|
|
23
|
+
- Tox configuration is now in native (toml) format.
|
|
24
|
+
- Setup (dependencies) update.
|
|
25
|
+
|
|
26
|
+
1.2.2 (2024-10-30)
|
|
27
|
+
------------------
|
|
28
|
+
- Setup (dependencies) update.
|
|
29
|
+
|
|
30
|
+
1.2.0 (2024-09-30)
|
|
31
|
+
------------------
|
|
32
|
+
- Drop support for Python 3.8
|
|
33
|
+
- Ability to obtain __copyright__ from the README.rst content.
|
|
34
|
+
- Setup (dependencies) update.
|
|
35
|
+
|
|
36
|
+
1.1.8 (2024-08-13)
|
|
37
|
+
------------------
|
|
38
|
+
- Add support for Python 3.13
|
|
39
|
+
- Setup (dependencies) update.
|
|
40
|
+
|
|
41
|
+
1.1.7 (2024-07-15)
|
|
42
|
+
------------------
|
|
43
|
+
- Setup (dependencies) update.
|
|
44
|
+
|
|
45
|
+
1.1.6 (2024-06-20)
|
|
46
|
+
------------------
|
|
47
|
+
- Setup (dependencies) update.
|
|
48
|
+
|
|
49
|
+
1.1.5 (2024-01-26)
|
|
50
|
+
------------------
|
|
51
|
+
- Setup update (now based on tox >= 4.0).
|
|
52
|
+
- Cleanup.
|
|
53
|
+
|
|
54
|
+
1.1.0 (2023-12-15)
|
|
55
|
+
------------------
|
|
56
|
+
- Add support for Python 3.12
|
|
57
|
+
- Drop support for Python 3.7
|
|
58
|
+
- Add support for PyPy 3.10
|
|
59
|
+
- Drop support for PyPy 3.7 and 3.8
|
|
60
|
+
- Bugfix for parsing metadata's "Project-URL".
|
|
61
|
+
- Bugfix of about_from_setup() for __version_info__.
|
|
62
|
+
- | Enhancement" the 'package_path' parameter of the about_from_setup()
|
|
63
|
+
| can now be of type string or Path.
|
|
64
|
+
- Bugfix of about_from_setup() for parsing author and maintainer emails.
|
|
65
|
+
- Copyright year update.
|
|
66
|
+
- Added a trivial unit test.
|
|
67
|
+
|
|
68
|
+
1.0.8 (2022-10-18)
|
|
69
|
+
------------------
|
|
70
|
+
- Tox configuration has been moved to pyproject.toml
|
|
71
|
+
|
|
72
|
+
1.0.7 (2022-08-22)
|
|
73
|
+
------------------
|
|
74
|
+
- Setup update.
|
|
75
|
+
|
|
76
|
+
1.0.6 (2022-07-24)
|
|
77
|
+
------------------
|
|
78
|
+
- Add __author_email__ (as alias of __email__).
|
|
79
|
+
- Add __maintainer_email__.
|
|
80
|
+
- Setup update (currently based mainly on pyproject.toml).
|
|
81
|
+
|
|
82
|
+
1.0.5 (2022-07-20)
|
|
83
|
+
------------------
|
|
84
|
+
- Add about_from_setup() (to use e.g. in docs.conf.py).
|
|
85
|
+
- Add support for Python 3.10 and 3.11
|
|
86
|
+
- Add support for PyPy 3.7, 3.8 and 3.9
|
|
87
|
+
- Setup update.
|
|
88
|
+
|
|
89
|
+
1.0.4 (2022-01-10)
|
|
90
|
+
------------------
|
|
91
|
+
- Drop support for Python 3.6
|
|
92
|
+
- Copyright year update.
|
|
93
|
+
- Setup update.
|
|
94
|
+
|
|
95
|
+
1.0.3 (2021-10-14)
|
|
96
|
+
------------------
|
|
97
|
+
- Setup update.
|
|
98
|
+
|
|
99
|
+
1.0.2 (2021-07-20)
|
|
100
|
+
------------------
|
|
101
|
+
- First functional release.
|
|
102
|
+
|
|
103
|
+
0.0.1 (2020-10-16)
|
|
104
|
+
------------------
|
|
105
|
+
- Initial commit.
|
pkg_about-1.2.8/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
zlib License
|
|
2
|
+
|
|
3
|
+
Copyright (C) 2020-2025 Adam Karpierz
|
|
4
|
+
|
|
5
|
+
This software is provided 'as-is', without any express or implied
|
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
|
7
|
+
arising from the use of this software.
|
|
8
|
+
|
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
|
11
|
+
freely, subject to the following restrictions:
|
|
12
|
+
|
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
|
14
|
+
claim that you wrote the original software. If you use this software
|
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
|
16
|
+
appreciated but is not required.
|
|
17
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
18
|
+
misrepresented as being the original software.
|
|
19
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Copyright (c) 2020 Adam Karpierz
|
|
2
|
+
# SPDX-License-Identifier: Zlib
|
|
3
|
+
|
|
4
|
+
include README.rst
|
|
5
|
+
include CHANGES.rst
|
|
6
|
+
include LICENSE
|
|
7
|
+
include pyproject.toml
|
|
8
|
+
include .readthedocs.yml
|
|
9
|
+
|
|
10
|
+
graft docs
|
|
11
|
+
|
|
12
|
+
graft src
|
|
13
|
+
|
|
14
|
+
graft tests
|
|
15
|
+
|
|
16
|
+
global-exclude \#* \#*/**
|
|
17
|
+
global-exclude .build .build/** .build.* .build.*/**
|
|
18
|
+
global-exclude *.py[cod] __pycache__
|
pkg_about-1.2.8/PKG-INFO
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: pkg_about
|
|
3
|
+
Version: 1.2.8
|
|
4
|
+
Summary: Shares Python package metadata at runtime.
|
|
5
|
+
Author: Adam Karpierz
|
|
6
|
+
Author-email: adam@karpierz.net
|
|
7
|
+
Maintainer: Adam Karpierz
|
|
8
|
+
Maintainer-email: adam@karpierz.net
|
|
9
|
+
License: zlib/libpng License ; https://opensource.org/license/zlib
|
|
10
|
+
Project-URL: Homepage, https://pypi.org/project/pkg-about/
|
|
11
|
+
Project-URL: Documentation, https://pkg-about.readthedocs.io/
|
|
12
|
+
Project-URL: Download, https://pypi.org/project/pkg-about/
|
|
13
|
+
Project-URL: Source, https://github.com/karpierz/pkg_about
|
|
14
|
+
Project-URL: Issues, https://github.com/karpierz/pkg_about/issues
|
|
15
|
+
Keywords: pkg_about,__about__,packaging
|
|
16
|
+
Platform: any
|
|
17
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
18
|
+
Classifier: Intended Audience :: Developers
|
|
19
|
+
Classifier: License :: OSI Approved :: zlib/libpng License
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Natural Language :: Polish
|
|
22
|
+
Classifier: Programming Language :: Python
|
|
23
|
+
Classifier: Programming Language :: Python :: 3
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
29
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
+
Requires-Python: <4.0.0,>=3.9.0
|
|
34
|
+
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
|
+
License-File: LICENSE
|
|
36
|
+
Requires-Dist: setuptools>=75.8.0
|
|
37
|
+
Requires-Dist: packaging>=24.2.0
|
|
38
|
+
Requires-Dist: importlib-metadata>=8.6.1
|
|
39
|
+
Requires-Dist: tomli>=2.2.1; python_version < "3.11"
|
|
40
|
+
Requires-Dist: docutils>=0.21.2
|
|
41
|
+
Provides-Extra: doc
|
|
42
|
+
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinx-autodoc-typehints>=2.3.0; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinx-toolbox>=3.8.1; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
46
|
+
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
47
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
48
|
+
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
49
|
+
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
50
|
+
Requires-Dist: nbsphinx>=0.9.6; extra == "doc"
|
|
51
|
+
Provides-Extra: test
|
|
52
|
+
Requires-Dist: deepdiff>=8.1.1; extra == "test"
|
|
53
|
+
Requires-Dist: rich>=13.9.4; extra == "test"
|
|
54
|
+
|
|
55
|
+
pkg_about
|
|
56
|
+
=========
|
|
57
|
+
|
|
58
|
+
Shares Python package metadata at runtime.
|
|
59
|
+
|
|
60
|
+
Overview
|
|
61
|
+
========
|
|
62
|
+
|
|
63
|
+
TBD...
|
|
64
|
+
|
|
65
|
+
`PyPI record`_.
|
|
66
|
+
|
|
67
|
+
`Documentation`_.
|
|
68
|
+
|
|
69
|
+
Usage
|
|
70
|
+
-----
|
|
71
|
+
|
|
72
|
+
TBD...
|
|
73
|
+
|
|
74
|
+
Installation
|
|
75
|
+
============
|
|
76
|
+
|
|
77
|
+
Prerequisites:
|
|
78
|
+
|
|
79
|
+
+ Python 3.9 or higher
|
|
80
|
+
|
|
81
|
+
* https://www.python.org/
|
|
82
|
+
|
|
83
|
+
+ pip and setuptools
|
|
84
|
+
|
|
85
|
+
* https://pypi.org/project/pip/
|
|
86
|
+
* https://pypi.org/project/setuptools/
|
|
87
|
+
|
|
88
|
+
To install run:
|
|
89
|
+
|
|
90
|
+
.. parsed-literal::
|
|
91
|
+
|
|
92
|
+
python -m pip install --upgrade |package|
|
|
93
|
+
|
|
94
|
+
Development
|
|
95
|
+
===========
|
|
96
|
+
|
|
97
|
+
Prerequisites:
|
|
98
|
+
|
|
99
|
+
+ Development is strictly based on *tox*. To install it run::
|
|
100
|
+
|
|
101
|
+
python -m pip install --upgrade tox
|
|
102
|
+
|
|
103
|
+
Visit `Development page`_.
|
|
104
|
+
|
|
105
|
+
Installation from sources:
|
|
106
|
+
|
|
107
|
+
clone the sources:
|
|
108
|
+
|
|
109
|
+
.. parsed-literal::
|
|
110
|
+
|
|
111
|
+
git clone |respository| |package|
|
|
112
|
+
|
|
113
|
+
and run:
|
|
114
|
+
|
|
115
|
+
.. parsed-literal::
|
|
116
|
+
|
|
117
|
+
python -m pip install ./|package|
|
|
118
|
+
|
|
119
|
+
or on development mode:
|
|
120
|
+
|
|
121
|
+
.. parsed-literal::
|
|
122
|
+
|
|
123
|
+
python -m pip install --editable ./|package|
|
|
124
|
+
|
|
125
|
+
License
|
|
126
|
+
=======
|
|
127
|
+
|
|
128
|
+
| |copyright|
|
|
129
|
+
| Licensed under the zlib/libpng License
|
|
130
|
+
| https://opensource.org/license/zlib
|
|
131
|
+
| Please refer to the accompanying LICENSE file.
|
|
132
|
+
|
|
133
|
+
Authors
|
|
134
|
+
=======
|
|
135
|
+
|
|
136
|
+
* Adam Karpierz <adam@karpierz.net>
|
|
137
|
+
|
|
138
|
+
.. |package| replace:: pkg_about
|
|
139
|
+
.. |package_bold| replace:: **pkg_about**
|
|
140
|
+
.. |copyright| replace:: Copyright (c) 2020-2025 Adam Karpierz
|
|
141
|
+
.. |respository| replace:: https://github.com/karpierz/pkg_about.git
|
|
142
|
+
.. _Development page: https://github.com/karpierz/pkg_about
|
|
143
|
+
.. _PyPI record: https://pypi.org/project/pkg-about/
|
|
144
|
+
.. _Documentation: https://pkg-about.readthedocs.io/
|
|
145
|
+
|
|
146
|
+
Changelog
|
|
147
|
+
=========
|
|
148
|
+
|
|
149
|
+
1.2.8 (2025-01-25)
|
|
150
|
+
------------------
|
|
151
|
+
- Setup (dependencies) update.
|
|
152
|
+
|
|
153
|
+
1.2.7 (2025-01-20)
|
|
154
|
+
------------------
|
|
155
|
+
- Copyright year update.
|
|
156
|
+
- Setup (dependencies) update.
|
|
157
|
+
|
|
158
|
+
1.2.6 (2024-12-13)
|
|
159
|
+
------------------
|
|
160
|
+
- Source distribution (\*.tar.gz now) is compliant with PEP-0625.
|
|
161
|
+
- Setup (dependencies) update.
|
|
162
|
+
|
|
163
|
+
1.2.5 (2024-11-13)
|
|
164
|
+
------------------
|
|
165
|
+
- More unittests.
|
|
166
|
+
- 100% code linting.
|
|
167
|
+
- 100% code coverage.
|
|
168
|
+
- Tox configuration is now in native (toml) format.
|
|
169
|
+
- Setup (dependencies) update.
|
|
170
|
+
|
|
171
|
+
1.2.2 (2024-10-30)
|
|
172
|
+
------------------
|
|
173
|
+
- Setup (dependencies) update.
|
|
174
|
+
|
|
175
|
+
1.2.0 (2024-09-30)
|
|
176
|
+
------------------
|
|
177
|
+
- Drop support for Python 3.8
|
|
178
|
+
- Ability to obtain __copyright__ from the README.rst content.
|
|
179
|
+
- Setup (dependencies) update.
|
|
180
|
+
|
|
181
|
+
1.1.8 (2024-08-13)
|
|
182
|
+
------------------
|
|
183
|
+
- Add support for Python 3.13
|
|
184
|
+
- Setup (dependencies) update.
|
|
185
|
+
|
|
186
|
+
1.1.7 (2024-07-15)
|
|
187
|
+
------------------
|
|
188
|
+
- Setup (dependencies) update.
|
|
189
|
+
|
|
190
|
+
1.1.6 (2024-06-20)
|
|
191
|
+
------------------
|
|
192
|
+
- Setup (dependencies) update.
|
|
193
|
+
|
|
194
|
+
1.1.5 (2024-01-26)
|
|
195
|
+
------------------
|
|
196
|
+
- Setup update (now based on tox >= 4.0).
|
|
197
|
+
- Cleanup.
|
|
198
|
+
|
|
199
|
+
1.1.0 (2023-12-15)
|
|
200
|
+
------------------
|
|
201
|
+
- Add support for Python 3.12
|
|
202
|
+
- Drop support for Python 3.7
|
|
203
|
+
- Add support for PyPy 3.10
|
|
204
|
+
- Drop support for PyPy 3.7 and 3.8
|
|
205
|
+
- Bugfix for parsing metadata's "Project-URL".
|
|
206
|
+
- Bugfix of about_from_setup() for __version_info__.
|
|
207
|
+
- | Enhancement" the 'package_path' parameter of the about_from_setup()
|
|
208
|
+
| can now be of type string or Path.
|
|
209
|
+
- Bugfix of about_from_setup() for parsing author and maintainer emails.
|
|
210
|
+
- Copyright year update.
|
|
211
|
+
- Added a trivial unit test.
|
|
212
|
+
|
|
213
|
+
1.0.8 (2022-10-18)
|
|
214
|
+
------------------
|
|
215
|
+
- Tox configuration has been moved to pyproject.toml
|
|
216
|
+
|
|
217
|
+
1.0.7 (2022-08-22)
|
|
218
|
+
------------------
|
|
219
|
+
- Setup update.
|
|
220
|
+
|
|
221
|
+
1.0.6 (2022-07-24)
|
|
222
|
+
------------------
|
|
223
|
+
- Add __author_email__ (as alias of __email__).
|
|
224
|
+
- Add __maintainer_email__.
|
|
225
|
+
- Setup update (currently based mainly on pyproject.toml).
|
|
226
|
+
|
|
227
|
+
1.0.5 (2022-07-20)
|
|
228
|
+
------------------
|
|
229
|
+
- Add about_from_setup() (to use e.g. in docs.conf.py).
|
|
230
|
+
- Add support for Python 3.10 and 3.11
|
|
231
|
+
- Add support for PyPy 3.7, 3.8 and 3.9
|
|
232
|
+
- Setup update.
|
|
233
|
+
|
|
234
|
+
1.0.4 (2022-01-10)
|
|
235
|
+
------------------
|
|
236
|
+
- Drop support for Python 3.6
|
|
237
|
+
- Copyright year update.
|
|
238
|
+
- Setup update.
|
|
239
|
+
|
|
240
|
+
1.0.3 (2021-10-14)
|
|
241
|
+
------------------
|
|
242
|
+
- Setup update.
|
|
243
|
+
|
|
244
|
+
1.0.2 (2021-07-20)
|
|
245
|
+
------------------
|
|
246
|
+
- First functional release.
|
|
247
|
+
|
|
248
|
+
0.0.1 (2020-10-16)
|
|
249
|
+
------------------
|
|
250
|
+
- Initial commit.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
pkg_about
|
|
2
|
+
=========
|
|
3
|
+
|
|
4
|
+
Shares Python package metadata at runtime.
|
|
5
|
+
|
|
6
|
+
Overview
|
|
7
|
+
========
|
|
8
|
+
|
|
9
|
+
TBD...
|
|
10
|
+
|
|
11
|
+
`PyPI record`_.
|
|
12
|
+
|
|
13
|
+
`Documentation`_.
|
|
14
|
+
|
|
15
|
+
Usage
|
|
16
|
+
-----
|
|
17
|
+
|
|
18
|
+
TBD...
|
|
19
|
+
|
|
20
|
+
Installation
|
|
21
|
+
============
|
|
22
|
+
|
|
23
|
+
Prerequisites:
|
|
24
|
+
|
|
25
|
+
+ Python 3.9 or higher
|
|
26
|
+
|
|
27
|
+
* https://www.python.org/
|
|
28
|
+
|
|
29
|
+
+ pip and setuptools
|
|
30
|
+
|
|
31
|
+
* https://pypi.org/project/pip/
|
|
32
|
+
* https://pypi.org/project/setuptools/
|
|
33
|
+
|
|
34
|
+
To install run:
|
|
35
|
+
|
|
36
|
+
.. parsed-literal::
|
|
37
|
+
|
|
38
|
+
python -m pip install --upgrade |package|
|
|
39
|
+
|
|
40
|
+
Development
|
|
41
|
+
===========
|
|
42
|
+
|
|
43
|
+
Prerequisites:
|
|
44
|
+
|
|
45
|
+
+ Development is strictly based on *tox*. To install it run::
|
|
46
|
+
|
|
47
|
+
python -m pip install --upgrade tox
|
|
48
|
+
|
|
49
|
+
Visit `Development page`_.
|
|
50
|
+
|
|
51
|
+
Installation from sources:
|
|
52
|
+
|
|
53
|
+
clone the sources:
|
|
54
|
+
|
|
55
|
+
.. parsed-literal::
|
|
56
|
+
|
|
57
|
+
git clone |respository| |package|
|
|
58
|
+
|
|
59
|
+
and run:
|
|
60
|
+
|
|
61
|
+
.. parsed-literal::
|
|
62
|
+
|
|
63
|
+
python -m pip install ./|package|
|
|
64
|
+
|
|
65
|
+
or on development mode:
|
|
66
|
+
|
|
67
|
+
.. parsed-literal::
|
|
68
|
+
|
|
69
|
+
python -m pip install --editable ./|package|
|
|
70
|
+
|
|
71
|
+
License
|
|
72
|
+
=======
|
|
73
|
+
|
|
74
|
+
| |copyright|
|
|
75
|
+
| Licensed under the zlib/libpng License
|
|
76
|
+
| https://opensource.org/license/zlib
|
|
77
|
+
| Please refer to the accompanying LICENSE file.
|
|
78
|
+
|
|
79
|
+
Authors
|
|
80
|
+
=======
|
|
81
|
+
|
|
82
|
+
* Adam Karpierz <adam@karpierz.net>
|
|
83
|
+
|
|
84
|
+
.. |package| replace:: pkg_about
|
|
85
|
+
.. |package_bold| replace:: **pkg_about**
|
|
86
|
+
.. |copyright| replace:: Copyright (c) 2020-2025 Adam Karpierz
|
|
87
|
+
.. |respository| replace:: https://github.com/karpierz/pkg_about.git
|
|
88
|
+
.. _Development page: https://github.com/karpierz/pkg_about
|
|
89
|
+
.. _PyPI record: https://pypi.org/project/pkg-about/
|
|
90
|
+
.. _Documentation: https://pkg-about.readthedocs.io/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.. include:: ../README.rst
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# Configuration file for the Sphinx documentation builder.
|
|
2
|
+
#
|
|
3
|
+
# This file only contains a selection of the most common options. For a full
|
|
4
|
+
# list see the documentation:
|
|
5
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
6
|
+
|
|
7
|
+
__import__("pkg_about").about_from_setup()
|
|
8
|
+
|
|
9
|
+
def setup(app):
|
|
10
|
+
pass
|
|
11
|
+
|
|
12
|
+
# -- Path setup --------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
# If extensions (or modules to document with autodoc) are in another directory,
|
|
15
|
+
# add these directories to sys.path here. If the directory is relative to the
|
|
16
|
+
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
17
|
+
#
|
|
18
|
+
# import os
|
|
19
|
+
# import sys
|
|
20
|
+
# sys.path.insert(0, os.path.abspath('.'))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# -- Project information -----------------------------------------------------
|
|
24
|
+
|
|
25
|
+
project = about.__title__
|
|
26
|
+
copyright = about.__copyright__
|
|
27
|
+
author = about.__author__
|
|
28
|
+
|
|
29
|
+
# The full version, including alpha/beta/rc tags
|
|
30
|
+
release = about.__version__
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# -- General configuration ---------------------------------------------------
|
|
34
|
+
|
|
35
|
+
# If your documentation needs a minimal Sphinx version, state it here.
|
|
36
|
+
#
|
|
37
|
+
needs_sphinx = '7.4.7'
|
|
38
|
+
|
|
39
|
+
# Add any Sphinx extension module names here, as strings. They can be
|
|
40
|
+
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
41
|
+
# ones.
|
|
42
|
+
extensions = [
|
|
43
|
+
'sphinx.ext.autodoc',
|
|
44
|
+
'sphinx.ext.autosummary',
|
|
45
|
+
'sphinx.ext.doctest',
|
|
46
|
+
'sphinx.ext.intersphinx',
|
|
47
|
+
#'sphinx.ext.todo',
|
|
48
|
+
#'sphinx.ext.coverage',
|
|
49
|
+
'sphinx.ext.ifconfig',
|
|
50
|
+
'sphinx.ext.napoleon',
|
|
51
|
+
'sphinx_autodoc_typehints',
|
|
52
|
+
#'sphinx_toolbox',
|
|
53
|
+
'sphinx_tabs.tabs',
|
|
54
|
+
'sphinx_copybutton',
|
|
55
|
+
'sphinxcontrib.spelling',
|
|
56
|
+
'nbsphinx',
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
# Needed for e.g. linkcheck builder
|
|
60
|
+
tls_verify = False
|
|
61
|
+
|
|
62
|
+
# Add any paths that contain templates here, relative to this directory.
|
|
63
|
+
templates_path = ['_templates']
|
|
64
|
+
|
|
65
|
+
# The encoding of source files.
|
|
66
|
+
#
|
|
67
|
+
source_encoding = 'utf-8'
|
|
68
|
+
|
|
69
|
+
# The master toctree document.
|
|
70
|
+
master_doc = 'index'
|
|
71
|
+
|
|
72
|
+
# List of patterns, relative to source directory, that match files and
|
|
73
|
+
# directories to ignore when looking for source files.
|
|
74
|
+
# This pattern also affects html_static_path and html_extra_path.
|
|
75
|
+
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
76
|
+
|
|
77
|
+
# The name of the Pygments (syntax highlighting) style to use.
|
|
78
|
+
pygments_style = 'sphinx'
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
# -- Options for HTML output -------------------------------------------------
|
|
82
|
+
|
|
83
|
+
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
84
|
+
# a list of builtin themes.
|
|
85
|
+
#
|
|
86
|
+
html_theme = 'bizstyle' # 'alabaster'
|
|
87
|
+
|
|
88
|
+
# Add any paths that contain custom static files (such as style sheets) here,
|
|
89
|
+
# relative to this directory. They are copied after the builtin static files,
|
|
90
|
+
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
91
|
+
html_static_path = ['_static']
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
# -- Extension configuration -------------------------------------------------
|
|
95
|
+
|
|
96
|
+
# -- Options for autodoc extension -------------------------------------------
|
|
97
|
+
|
|
98
|
+
autoclass_content = 'both'
|
|
99
|
+
autodoc_member_order = 'bysource'
|
|
100
|
+
|
|
101
|
+
# -- Options for apidoc extension --------------------------------------------
|
|
102
|
+
|
|
103
|
+
apidoc_separate_modules = True
|
|
104
|
+
apidoc_module_first = True
|
|
105
|
+
apidoc_output_dir = 'api'
|
|
106
|
+
|
|
107
|
+
# -- Options for intersphinx extension ---------------------------------------
|
|
108
|
+
|
|
109
|
+
# Example configuration for intersphinx: refer to the Python standard library.
|
|
110
|
+
# intersphinx_mapping = {'https://docs.python.org/': None}
|
|
111
|
+
|
|
112
|
+
# -- Options for todo extension ----------------------------------------------
|
|
113
|
+
|
|
114
|
+
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
|
115
|
+
todo_include_todos = False
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
pkg_about documentation
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
.. _readme:
|
|
5
|
+
.. include:: README.rst
|
|
6
|
+
|
|
7
|
+
Contents
|
|
8
|
+
========
|
|
9
|
+
|
|
10
|
+
.. toctree::
|
|
11
|
+
:maxdepth: 2
|
|
12
|
+
|
|
13
|
+
CHANGES.rst
|
|
14
|
+
|
|
15
|
+
Indices and tables
|
|
16
|
+
==================
|
|
17
|
+
|
|
18
|
+
* :ref:`genindex`
|
|
19
|
+
* :ref:`search`
|