expit 1.0.10__tar.gz → 1.0.11__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.
- {expit-1.0.10/src/expit.egg-info → expit-1.0.11}/PKG-INFO +6 -4
- {expit-1.0.10 → expit-1.0.11}/pyproject.toml +5 -3
- {expit-1.0.10 → expit-1.0.11}/src/expit/core/__init__.py +2 -2
- {expit-1.0.10 → expit-1.0.11/src/expit.egg-info}/PKG-INFO +6 -4
- {expit-1.0.10 → expit-1.0.11}/LICENSE.txt +0 -0
- {expit-1.0.10 → expit-1.0.11}/MANIFEST.in +0 -0
- {expit-1.0.10 → expit-1.0.11}/README.rst +0 -0
- {expit-1.0.10 → expit-1.0.11}/setup.cfg +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit/__init__.py +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit/__main__.py +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit/tests/__init__.py +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit/tests/test_easy.py +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit.egg-info/SOURCES.txt +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit.egg-info/dependency_links.txt +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit.egg-info/requires.txt +0 -0
- {expit-1.0.10 → expit-1.0.11}/src/expit.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: expit
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.11
|
|
4
|
+
Summary: This project provides an implementation of the expit function.
|
|
5
5
|
Author-email: Johannes <johannes-programming@mailfence.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
7
7
|
|
|
@@ -24,16 +24,18 @@ 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://expit.johannes-programming.online/
|
|
28
27
|
Project-URL: Download, https://pypi.org/project/expit/#files
|
|
29
28
|
Project-URL: Index, https://pypi.org/project/expit/
|
|
30
29
|
Project-URL: Source, https://github.com/johannes-programming/expit/
|
|
31
30
|
Project-URL: Website, https://expit.johannes-programming.online/
|
|
32
31
|
Classifier: Development Status :: 5 - Production/Stable
|
|
33
32
|
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Natural Language :: English
|
|
34
|
+
Classifier: Operating System :: OS Independent
|
|
34
35
|
Classifier: Programming Language :: Python
|
|
35
36
|
Classifier: Programming Language :: Python :: 3
|
|
36
37
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
38
|
+
Classifier: Typing :: Typed
|
|
37
39
|
Requires-Python: >=3.11
|
|
38
40
|
Description-Content-Type: text/x-rst
|
|
39
41
|
License-File: LICENSE.txt
|
|
@@ -11,26 +11,28 @@ authors = [
|
|
|
11
11
|
classifiers = [
|
|
12
12
|
"Development Status :: 5 - Production/Stable",
|
|
13
13
|
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Natural Language :: English",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
14
16
|
"Programming Language :: Python",
|
|
15
17
|
"Programming Language :: Python :: 3",
|
|
16
18
|
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Typing :: Typed",
|
|
17
20
|
]
|
|
18
21
|
dependencies = [
|
|
19
22
|
"click>=8.1.7",
|
|
20
23
|
"preparse>=0.0.3",
|
|
21
24
|
]
|
|
22
|
-
description = "
|
|
25
|
+
description = "This project provides an implementation of the expit function."
|
|
23
26
|
keywords = []
|
|
24
27
|
name = "expit"
|
|
25
28
|
readme = "README.rst"
|
|
26
29
|
requires-python = ">=3.11"
|
|
27
|
-
version = "1.0.
|
|
30
|
+
version = "1.0.11"
|
|
28
31
|
|
|
29
32
|
[project.license]
|
|
30
33
|
file = "LICENSE.txt"
|
|
31
34
|
|
|
32
35
|
[project.urls]
|
|
33
|
-
Documentation = "https://expit.johannes-programming.online/"
|
|
34
36
|
Download = "https://pypi.org/project/expit/#files"
|
|
35
37
|
Index = "https://pypi.org/project/expit/"
|
|
36
38
|
Source = "https://github.com/johannes-programming/expit/"
|
|
@@ -7,7 +7,7 @@ __all__ = ["function", "main"]
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
def function(x: float) -> float:
|
|
10
|
-
"
|
|
10
|
+
"This function is the logistical sigmoid, i.e. the expit function."
|
|
11
11
|
try:
|
|
12
12
|
p = math.exp(-x)
|
|
13
13
|
except OverflowError:
|
|
@@ -21,5 +21,5 @@ def function(x: float) -> float:
|
|
|
21
21
|
@click.version_option(None, "-V", "--version")
|
|
22
22
|
@click.argument("x", type=float)
|
|
23
23
|
def main(x: float) -> None:
|
|
24
|
-
"
|
|
24
|
+
"This command applies the expit function to x."
|
|
25
25
|
click.echo(function(x))
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: expit
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.11
|
|
4
|
+
Summary: This project provides an implementation of the expit function.
|
|
5
5
|
Author-email: Johannes <johannes-programming@mailfence.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
7
7
|
|
|
@@ -24,16 +24,18 @@ 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://expit.johannes-programming.online/
|
|
28
27
|
Project-URL: Download, https://pypi.org/project/expit/#files
|
|
29
28
|
Project-URL: Index, https://pypi.org/project/expit/
|
|
30
29
|
Project-URL: Source, https://github.com/johannes-programming/expit/
|
|
31
30
|
Project-URL: Website, https://expit.johannes-programming.online/
|
|
32
31
|
Classifier: Development Status :: 5 - Production/Stable
|
|
33
32
|
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Natural Language :: English
|
|
34
|
+
Classifier: Operating System :: OS Independent
|
|
34
35
|
Classifier: Programming Language :: Python
|
|
35
36
|
Classifier: Programming Language :: Python :: 3
|
|
36
37
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
38
|
+
Classifier: Typing :: Typed
|
|
37
39
|
Requires-Python: >=3.11
|
|
38
40
|
Description-Content-Type: text/x-rst
|
|
39
41
|
License-File: LICENSE.txt
|
|
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
|