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.
@@ -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.
@@ -0,0 +1,2 @@
1
+ recursive-include docs *.rst
2
+ recursive-include src/setdoc *.toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setdoc
3
- Version: 1.2.20
3
+ Version: 1.2.22
4
4
  Summary: This project helps to set the doc string.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -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.20"
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."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setdoc
3
- Version: 1.2.20
3
+ Version: 1.2.22
4
4
  Summary: This project helps to set the doc string.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
setdoc-1.2.20/MANIFEST.in DELETED
@@ -1,2 +0,0 @@
1
- recursive-include docs *.rst
2
- recursive-include src/setdoc *.toml
File without changes
File without changes
File without changes