scaevola 1.1.0__tar.gz → 1.1.1__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.
@@ -0,0 +1 @@
1
+ recursive-include src/scaevola *.toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scaevola
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: This project provides a class with preset right handed magic methods.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -24,7 +24,7 @@ keywords = []
24
24
  name = "scaevola"
25
25
  readme = "README.rst"
26
26
  requires-python = ">=3.11"
27
- version = "1.1.0"
27
+ version = "1.1.1"
28
28
 
29
29
  [project.license]
30
30
  file = "LICENSE.txt"
@@ -0,0 +1,20 @@
1
+ [docs]
2
+ operator = "This magic method implements other%sself."
3
+ ge = "This magic method implements self>=other."
4
+ gt = "This magic method implements self>other."
5
+ rdivmod = "This magic method implements divmod(other, self)."
6
+
7
+ [operator]
8
+ add = "+"
9
+ and_ = "&"
10
+ floordiv = "//"
11
+ lshift = "<<"
12
+ matmul = "@"
13
+ mod = "%"
14
+ mul = "*"
15
+ or_ = "|"
16
+ pow = "**"
17
+ rshift = ">>"
18
+ sub = "-"
19
+ truediv = "/"
20
+ xor = "^"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scaevola
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: This project provides a class with preset right handed magic methods.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -9,6 +9,7 @@ src/scaevola.egg-info/SOURCES.txt
9
9
  src/scaevola.egg-info/dependency_links.txt
10
10
  src/scaevola.egg-info/top_level.txt
11
11
  src/scaevola/core/__init__.py
12
+ src/scaevola/core/cfg.toml
12
13
  src/scaevola/tests/__init__.py
13
14
  src/scaevola/tests/test_doc.py
14
15
  src/scaevola/tests/test_op.py
File without changes
File without changes
File without changes
File without changes