expit 1.0.8__tar.gz → 1.0.10__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: expit
3
- Version: 1.0.8
3
+ Version: 1.0.10
4
4
  Summary: The expit function.
5
5
  Author-email: Johannes <johannes-programming@mailfence.com>
6
6
  License: The MIT License (MIT)
@@ -24,11 +24,11 @@ License: The MIT License (MIT)
24
24
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
25
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
26
  SOFTWARE.
27
- Project-URL: Documentation, https://pypi.org/project/expit
27
+ Project-URL: Documentation, https://expit.johannes-programming.online/
28
28
  Project-URL: Download, https://pypi.org/project/expit/#files
29
29
  Project-URL: Index, https://pypi.org/project/expit/
30
- Project-URL: Source, https://github.com/johannes-programming/expit
31
- Project-URL: Website, https://expit.johannes-programming.online
30
+ Project-URL: Source, https://github.com/johannes-programming/expit/
31
+ Project-URL: Website, https://expit.johannes-programming.online/
32
32
  Classifier: Development Status :: 5 - Production/Stable
33
33
  Classifier: License :: OSI Approved :: MIT License
34
34
  Classifier: Programming Language :: Python
@@ -38,10 +38,10 @@ Requires-Python: >=3.11
38
38
  Description-Content-Type: text/x-rst
39
39
  License-File: LICENSE.txt
40
40
  Requires-Dist: click>=8.1.7
41
- Requires-Dist: preparse>=0.0.2
41
+ Requires-Dist: preparse>=0.0.3
42
42
 
43
43
  =====
44
44
  expit
45
45
  =====
46
46
 
47
- Visit the website `https://expit.johannes-programming.online <https://expit.johannes-programming.online>`_ for more information.
47
+ Visit the website `https://expit.johannes-programming.online/ <https://expit.johannes-programming.online/>`_ for more information.
@@ -0,0 +1,5 @@
1
+ =====
2
+ expit
3
+ =====
4
+
5
+ Visit the website `https://expit.johannes-programming.online/ <https://expit.johannes-programming.online/>`_ for more information.
@@ -17,21 +17,21 @@ classifiers = [
17
17
  ]
18
18
  dependencies = [
19
19
  "click>=8.1.7",
20
- "preparse>=0.0.2",
20
+ "preparse>=0.0.3",
21
21
  ]
22
22
  description = "The expit function."
23
23
  keywords = []
24
24
  name = "expit"
25
25
  readme = "README.rst"
26
26
  requires-python = ">=3.11"
27
- version = "1.0.8"
27
+ version = "1.0.10"
28
28
 
29
29
  [project.license]
30
30
  file = "LICENSE.txt"
31
31
 
32
32
  [project.urls]
33
- Documentation = "https://pypi.org/project/expit"
33
+ Documentation = "https://expit.johannes-programming.online/"
34
34
  Download = "https://pypi.org/project/expit/#files"
35
35
  Index = "https://pypi.org/project/expit/"
36
- Source = "https://github.com/johannes-programming/expit"
37
- Website = "https://expit.johannes-programming.online"
36
+ Source = "https://github.com/johannes-programming/expit/"
37
+ Website = "https://expit.johannes-programming.online/"
@@ -6,7 +6,8 @@ import preparse
6
6
  __all__ = ["function", "main"]
7
7
 
8
8
 
9
- def function(x: float):
9
+ def function(x: float) -> float:
10
+ "The expit function."
10
11
  try:
11
12
  p = math.exp(-x)
12
13
  except OverflowError:
@@ -19,6 +20,6 @@ def function(x: float):
19
20
  @click.help_option("-h", "--help")
20
21
  @click.version_option(None, "-V", "--version")
21
22
  @click.argument("x", type=float)
22
- def main(x: float):
23
- """applies the expit function to x"""
23
+ def main(x: float) -> None:
24
+ "Apply the expit function to x."
24
25
  click.echo(function(x))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: expit
3
- Version: 1.0.8
3
+ Version: 1.0.10
4
4
  Summary: The expit function.
5
5
  Author-email: Johannes <johannes-programming@mailfence.com>
6
6
  License: The MIT License (MIT)
@@ -24,11 +24,11 @@ License: The MIT License (MIT)
24
24
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
25
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
26
  SOFTWARE.
27
- Project-URL: Documentation, https://pypi.org/project/expit
27
+ Project-URL: Documentation, https://expit.johannes-programming.online/
28
28
  Project-URL: Download, https://pypi.org/project/expit/#files
29
29
  Project-URL: Index, https://pypi.org/project/expit/
30
- Project-URL: Source, https://github.com/johannes-programming/expit
31
- Project-URL: Website, https://expit.johannes-programming.online
30
+ Project-URL: Source, https://github.com/johannes-programming/expit/
31
+ Project-URL: Website, https://expit.johannes-programming.online/
32
32
  Classifier: Development Status :: 5 - Production/Stable
33
33
  Classifier: License :: OSI Approved :: MIT License
34
34
  Classifier: Programming Language :: Python
@@ -38,10 +38,10 @@ Requires-Python: >=3.11
38
38
  Description-Content-Type: text/x-rst
39
39
  License-File: LICENSE.txt
40
40
  Requires-Dist: click>=8.1.7
41
- Requires-Dist: preparse>=0.0.2
41
+ Requires-Dist: preparse>=0.0.3
42
42
 
43
43
  =====
44
44
  expit
45
45
  =====
46
46
 
47
- Visit the website `https://expit.johannes-programming.online <https://expit.johannes-programming.online>`_ for more information.
47
+ Visit the website `https://expit.johannes-programming.online/ <https://expit.johannes-programming.online/>`_ for more information.
@@ -0,0 +1,2 @@
1
+ click>=8.1.7
2
+ preparse>=0.0.3
expit-1.0.8/README.rst DELETED
@@ -1,5 +0,0 @@
1
- =====
2
- expit
3
- =====
4
-
5
- Visit the website `https://expit.johannes-programming.online <https://expit.johannes-programming.online>`_ for more information.
@@ -1,2 +0,0 @@
1
- click>=8.1.7
2
- preparse>=0.0.2
File without changes
File without changes
File without changes
File without changes
File without changes