expit 1.0.10__tar.gz → 1.0.12__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,7 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: expit
3
- Version: 1.0.10
4
- Summary: The expit function.
3
+ Version: 1.0.12
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,21 +24,24 @@ 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
40
42
  Requires-Dist: click>=8.1.7
41
- Requires-Dist: preparse>=0.0.3
43
+ Requires-Dist: preparse>=0.1.0.dev0
44
+ Dynamic: license-file
42
45
 
43
46
  =====
44
47
  expit
@@ -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
- "preparse>=0.0.3",
23
+ "preparse>=0.1.0.dev0",
21
24
  ]
22
- description = "The expit function."
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.10"
30
+ version = "1.0.12"
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
- "The expit function."
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:
@@ -15,11 +15,11 @@ def function(x: float) -> float:
15
15
  return 1 / (1 + p)
16
16
 
17
17
 
18
- @preparse.PreParser(posix=False).click()
18
+ @preparse.PreParser().click()
19
19
  @click.command(add_help_option=False)
20
20
  @click.help_option("-h", "--help")
21
21
  @click.version_option(None, "-V", "--version")
22
22
  @click.argument("x", type=float)
23
23
  def main(x: float) -> None:
24
- "Apply the expit function to x."
24
+ "This command applies the expit function to x."
25
25
  click.echo(function(x))
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: expit
3
- Version: 1.0.10
4
- Summary: The expit function.
3
+ Version: 1.0.12
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,21 +24,24 @@ 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
40
42
  Requires-Dist: click>=8.1.7
41
- Requires-Dist: preparse>=0.0.3
43
+ Requires-Dist: preparse>=0.1.0.dev0
44
+ Dynamic: license-file
42
45
 
43
46
  =====
44
47
  expit
@@ -0,0 +1,2 @@
1
+ click>=8.1.7
2
+ preparse>=0.1.0.dev0
@@ -1,2 +0,0 @@
1
- click>=8.1.7
2
- preparse>=0.0.3
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes