setdoc 1.2.20__tar.gz → 1.2.22__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.
- {setdoc-1.2.20 → setdoc-1.2.22}/LICENSE.txt +1 -1
- setdoc-1.2.22/MANIFEST.in +2 -0
- {setdoc-1.2.20/src/setdoc.egg-info → setdoc-1.2.22}/PKG-INFO +1 -1
- {setdoc-1.2.20 → setdoc-1.2.22}/README.rst +1 -1
- {setdoc-1.2.20 → setdoc-1.2.22}/docs/v1.0.rst +3 -3
- {setdoc-1.2.20 → setdoc-1.2.22}/docs/v1.1.rst +4 -4
- {setdoc-1.2.20 → setdoc-1.2.22}/docs/v1.2.rst +5 -5
- {setdoc-1.2.20 → setdoc-1.2.22}/pyproject.toml +8 -1
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/_utils/cfg.toml +1 -1
- {setdoc-1.2.20 → setdoc-1.2.22/src/setdoc.egg-info}/PKG-INFO +1 -1
- setdoc-1.2.20/MANIFEST.in +0 -2
- {setdoc-1.2.20 → setdoc-1.2.22}/setup.cfg +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/__init__.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/_utils/__init__.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/core/SetDoc.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/core/__init__.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/core/basic.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/core/getbasicdoc.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/py.typed +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/tests/__init__.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc/tests/test_core.py +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc.egg-info/SOURCES.txt +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc.egg-info/dependency_links.txt +0 -0
- {setdoc-1.2.20 → setdoc-1.2.22}/src/setdoc.egg-info/top_level.txt +0 -0
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
|
@@ -4,4 +4,4 @@ setdoc
|
|
|
4
4
|
|
|
5
5
|
Each minor version has its own documentation.
|
|
6
6
|
These docs can be found as rst-files the ``docs/`` directory of this project.
|
|
7
|
-
They can also be viewed on the website `https://setdoc.johannes-programming.online/ <https://setdoc.johannes-programming.online/>`_.
|
|
7
|
+
They can also be viewed on the website `https://setdoc.johannes-programming.online/ <https://setdoc.johannes-programming.online/>`_.
|
|
@@ -9,7 +9,7 @@ Installation
|
|
|
9
9
|
To install setdoc, you can use pip. Open your terminal and run:
|
|
10
10
|
|
|
11
11
|
.. code-block:: shell
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
pip install setdoc
|
|
14
14
|
|
|
15
15
|
Features
|
|
@@ -23,7 +23,7 @@ The instances of dataclass function as decorators that set the docstring of the
|
|
|
23
23
|
Usage:
|
|
24
24
|
|
|
25
25
|
.. code-block:: python
|
|
26
|
-
|
|
26
|
+
|
|
27
27
|
from typing import *
|
|
28
28
|
from setdoc import SetDoc
|
|
29
29
|
|
|
@@ -95,4 +95,4 @@ Impressum
|
|
|
95
95
|
- Name: Johannes
|
|
96
96
|
- Email: johannes.programming@gmail.com
|
|
97
97
|
- Homepage: https://www.johannes-programming.online/
|
|
98
|
-
- Gravatar: https://www.johannes-programming.fyi/
|
|
98
|
+
- Gravatar: https://www.johannes-programming.fyi/
|
|
@@ -9,7 +9,7 @@ Installation
|
|
|
9
9
|
To install setdoc, you can use pip. Open your terminal and run:
|
|
10
10
|
|
|
11
11
|
.. code-block:: shell
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
pip install setdoc
|
|
14
14
|
|
|
15
15
|
Features
|
|
@@ -23,7 +23,7 @@ The instances of dataclass function as decorators that set the docstring of the
|
|
|
23
23
|
Usage:
|
|
24
24
|
|
|
25
25
|
.. code-block:: python
|
|
26
|
-
|
|
26
|
+
|
|
27
27
|
from typing import *
|
|
28
28
|
from setdoc import SetDoc
|
|
29
29
|
|
|
@@ -63,7 +63,7 @@ The value that is used for ``__doc__``.
|
|
|
63
63
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
64
64
|
|
|
65
65
|
.. container:: versionadded
|
|
66
|
-
|
|
66
|
+
|
|
67
67
|
**Added in version 1.1.**
|
|
68
68
|
|
|
69
69
|
``setdoc.setdoc = setdoc.SetDoc``
|
|
@@ -102,4 +102,4 @@ Impressum
|
|
|
102
102
|
- Name: Johannes
|
|
103
103
|
- Email: johannes.programming@gmail.com
|
|
104
104
|
- Homepage: https://www.johannes-programming.online/
|
|
105
|
-
- Gravatar: https://www.johannes-programming.fyi/
|
|
105
|
+
- Gravatar: https://www.johannes-programming.fyi/
|
|
@@ -9,7 +9,7 @@ Installation
|
|
|
9
9
|
To install setdoc, you can use pip. Open your terminal and run:
|
|
10
10
|
|
|
11
11
|
.. code-block:: shell
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
pip install setdoc
|
|
14
14
|
|
|
15
15
|
Features
|
|
@@ -23,7 +23,7 @@ The instances of dataclass function as decorators that set the docstring of the
|
|
|
23
23
|
Usage:
|
|
24
24
|
|
|
25
25
|
.. code-block:: python
|
|
26
|
-
|
|
26
|
+
|
|
27
27
|
from typing import *
|
|
28
28
|
from setdoc import SetDoc
|
|
29
29
|
|
|
@@ -63,14 +63,14 @@ The value that is used for ``__doc__``.
|
|
|
63
63
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
64
64
|
|
|
65
65
|
.. container:: versionadded
|
|
66
|
-
|
|
66
|
+
|
|
67
67
|
**Added in version 1.1.**
|
|
68
68
|
|
|
69
69
|
``setdoc.getbasicdoc(name: str) -> str``
|
|
70
70
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
71
71
|
|
|
72
72
|
.. container:: versionadded
|
|
73
|
-
|
|
73
|
+
|
|
74
74
|
**Added in version 1.2.**
|
|
75
75
|
|
|
76
76
|
``setdoc.setdoc = setdoc.SetDoc``
|
|
@@ -109,4 +109,4 @@ Impressum
|
|
|
109
109
|
- Name: Johannes
|
|
110
110
|
- Email: johannes.programming@gmail.com
|
|
111
111
|
- Homepage: https://www.johannes-programming.online/
|
|
112
|
-
- Gravatar: https://www.johannes-programming.fyi/
|
|
112
|
+
- Gravatar: https://www.johannes-programming.fyi/
|
|
@@ -27,10 +27,17 @@ license-files = [
|
|
|
27
27
|
name = "setdoc"
|
|
28
28
|
readme = "README.rst"
|
|
29
29
|
requires-python = ">=3.11"
|
|
30
|
-
version = "1.2.
|
|
30
|
+
version = "1.2.22"
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
33
33
|
Download = "https://pypi.org/project/setdoc/#files"
|
|
34
34
|
Index = "https://pypi.org/project/setdoc/"
|
|
35
35
|
Source = "https://github.com/johannes-programming/setdoc/"
|
|
36
36
|
Website = "https://setdoc.johannes-programming.online/"
|
|
37
|
+
|
|
38
|
+
[tool.mypy]
|
|
39
|
+
files = [
|
|
40
|
+
".",
|
|
41
|
+
]
|
|
42
|
+
python_version = "3.11"
|
|
43
|
+
strict = false
|
|
@@ -83,4 +83,4 @@ insert = "This method inserts value at index."
|
|
|
83
83
|
isdisjoint = "This method determines if self and other have no intersection."
|
|
84
84
|
issubset = "This method determines if self is a subset of other."
|
|
85
85
|
issuperset = "This method determines if self is a superset of other."
|
|
86
|
-
setdefault = "This method returns the value of an item after guaranteeing its existence."
|
|
86
|
+
setdefault = "This method returns the value of an item after guaranteeing its existence."
|
setdoc-1.2.20/MANIFEST.in
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|