punctional 0.1.2__tar.gz → 0.1.3__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.
- {punctional-0.1.2 → punctional-0.1.3}/PKG-INFO +3 -4
- {punctional-0.1.2 → punctional-0.1.3}/README.md +1 -1
- {punctional-0.1.2 → punctional-0.1.3}/punctional/__init__.py +1 -1
- {punctional-0.1.2 → punctional-0.1.3}/pyproject.toml +2 -3
- {punctional-0.1.2 → punctional-0.1.3}/.gitignore +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/LICENSE +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/arithmetic.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/comparison.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/core.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/list_filters.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/logical.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/monads.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/string.py +0 -0
- {punctional-0.1.2 → punctional-0.1.3}/punctional/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: punctional
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A functional programming framework for Python — composable filters, method chaining, and expressive data pipelines with Option and Result monads.
|
|
5
5
|
Project-URL: Homepage, https://github.com/peghaz/punctional
|
|
6
6
|
Project-URL: Repository, https://github.com/peghaz/punctional
|
|
@@ -15,8 +15,7 @@ Classifier: Intended Audience :: Developers
|
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
20
|
Classifier: Typing :: Typed
|
|
22
21
|
Requires-Python: >=3.10
|
|
@@ -26,7 +25,7 @@ Description-Content-Type: text/markdown
|
|
|
26
25
|
|
|
27
26
|
> Functional programming for Python — monads, composable filters, and expressive data pipelines.
|
|
28
27
|
|
|
29
|
-
[](https://www.python.org/downloads/)
|
|
30
29
|
[](LICENSE)
|
|
31
30
|
|
|
32
31
|
## What is Punctional?
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> Functional programming for Python — monads, composable filters, and expressive data pipelines.
|
|
4
4
|
|
|
5
|
-
[](https://www.python.org/downloads/)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
|
|
8
8
|
## What is Punctional?
|
|
@@ -13,7 +13,7 @@ from .string import ToUpper, ToLower, Contains
|
|
|
13
13
|
from .list_filters import Map, FilterList, Reduce
|
|
14
14
|
from .monads import Option, Some, Nothing, Result, Ok, Error, some, try_result
|
|
15
15
|
|
|
16
|
-
__version__ = "0.1.
|
|
16
|
+
__version__ = "0.1.3"
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
# Core
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "punctional"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "A functional programming framework for Python — composable filters, method chaining, and expressive data pipelines with Option and Result monads."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -23,8 +23,7 @@ classifiers = [
|
|
|
23
23
|
"License :: OSI Approved :: MIT License",
|
|
24
24
|
"Operating System :: OS Independent",
|
|
25
25
|
"Programming Language :: Python :: 3",
|
|
26
|
-
"Programming Language :: Python :: 3.
|
|
27
|
-
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
28
27
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
28
|
"Typing :: Typed",
|
|
30
29
|
]
|
|
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
|