punctional 0.1.3__tar.gz → 0.2.0__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.3 → punctional-0.2.0}/PKG-INFO +1 -1
- {punctional-0.1.3 → punctional-0.2.0}/punctional/__init__.py +1 -1
- {punctional-0.1.3 → punctional-0.2.0}/pyproject.toml +1 -1
- {punctional-0.1.3 → punctional-0.2.0}/.gitignore +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/LICENSE +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/README.md +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/arithmetic.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/comparison.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/core.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/list_filters.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/logical.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/monads.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/string.py +0 -0
- {punctional-0.1.3 → punctional-0.2.0}/punctional/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: punctional
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
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
|
|
@@ -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.
|
|
16
|
+
__version__ = "0.2.0"
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
# Core
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "punctional"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
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"
|
|
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
|