punctional 0.1.1__tar.gz → 0.1.2__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.1 → punctional-0.1.2}/PKG-INFO +3 -3
- {punctional-0.1.1 → punctional-0.1.2}/punctional/__init__.py +1 -1
- {punctional-0.1.1 → punctional-0.1.2}/pyproject.toml +7 -17
- {punctional-0.1.1 → punctional-0.1.2}/.gitignore +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/LICENSE +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/README.md +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/arithmetic.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/comparison.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/core.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/list_filters.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/logical.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/monads.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/string.py +0 -0
- {punctional-0.1.1 → punctional-0.1.2}/punctional/types.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: punctional
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
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
|
|
7
7
|
Project-URL: Documentation, https://github.com/peghaz/punctional#readme
|
|
8
8
|
Project-URL: Issues, https://github.com/peghaz/punctional/issues
|
|
9
|
-
Author-email: Mehdi
|
|
9
|
+
Author-email: Mehdi Yaminli <mehdiyamin@gmail.com>
|
|
10
10
|
License: MIT
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Keywords: composition,data-pipeline,filters,functional-programming,method-chaining,monads,option,pipe-operator,result
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
21
|
Classifier: Typing :: Typed
|
|
22
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
25
|
# 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.2"
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
# Core
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "punctional"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
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
|
-
requires-python = ">=3.
|
|
7
|
-
license = {text = "MIT"}
|
|
8
|
-
authors = [
|
|
9
|
-
{name = "Mehdi Peghaz", email = "peghaz@example.com"}
|
|
10
|
-
]
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
authors = [{ name = "Mehdi Yaminli", email = "mehdiyamin@gmail.com" }]
|
|
11
9
|
keywords = [
|
|
12
10
|
"functional-programming",
|
|
13
11
|
"pipe-operator",
|
|
@@ -17,7 +15,7 @@ keywords = [
|
|
|
17
15
|
"filters",
|
|
18
16
|
"composition",
|
|
19
17
|
"method-chaining",
|
|
20
|
-
"data-pipeline"
|
|
18
|
+
"data-pipeline",
|
|
21
19
|
]
|
|
22
20
|
classifiers = [
|
|
23
21
|
"Development Status :: 4 - Beta",
|
|
@@ -39,10 +37,7 @@ Documentation = "https://github.com/peghaz/punctional#readme"
|
|
|
39
37
|
Issues = "https://github.com/peghaz/punctional/issues"
|
|
40
38
|
|
|
41
39
|
[dependency-groups]
|
|
42
|
-
dev = [
|
|
43
|
-
"pytest>=9.0.2",
|
|
44
|
-
"twine>=6.2.0",
|
|
45
|
-
]
|
|
40
|
+
dev = ["pytest>=9.0.2", "twine>=6.2.0"]
|
|
46
41
|
|
|
47
42
|
[build-system]
|
|
48
43
|
requires = ["hatchling"]
|
|
@@ -52,9 +47,4 @@ build-backend = "hatchling.build"
|
|
|
52
47
|
packages = ["punctional"]
|
|
53
48
|
|
|
54
49
|
[tool.hatch.build.targets.sdist]
|
|
55
|
-
include = [
|
|
56
|
-
"punctional/",
|
|
57
|
-
"README.md",
|
|
58
|
-
"LICENSE",
|
|
59
|
-
"pyproject.toml",
|
|
60
|
-
]
|
|
50
|
+
include = ["punctional/", "README.md", "LICENSE", "pyproject.toml"]
|
|
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
|