functionalthreading 0.2.3__tar.gz → 0.2.4__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: functionalthreading
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Functional programming with thread-based parallelism
5
5
  Author-email: Richard Tong <richytong@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/richytong/functionalthreading
@@ -11,3 +11,6 @@ Requires-Python: >=3.14
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
13
  Dynamic: license-file
14
+
15
+ # functionalthreading
16
+ functionalthreading - Functional programming with thread-based parallelism
@@ -0,0 +1,2 @@
1
+ # functionalthreading
2
+ functionalthreading - Functional programming with thread-based parallelism
@@ -0,0 +1,6 @@
1
+ from functools import partial, Placeholder as _
2
+ from functions import chain, tap, tmap
3
+
4
+ __name__ = 'functionalthreading'
5
+
6
+ __all__ = ['partial', '_' ,'chain', 'tap', 'tmap']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: functionalthreading
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Functional programming with thread-based parallelism
5
5
  Author-email: Richard Tong <richytong@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/richytong/functionalthreading
@@ -11,3 +11,6 @@ Requires-Python: >=3.14
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
13
  Dynamic: license-file
14
+
15
+ # functionalthreading
16
+ functionalthreading - Functional programming with thread-based parallelism
@@ -1,6 +1,8 @@
1
1
  LICENSE
2
+ README.md
2
3
  pyproject.toml
3
4
  setup.py
5
+ functionalthreading/__init__.py
4
6
  functionalthreading.egg-info/PKG-INFO
5
7
  functionalthreading.egg-info/SOURCES.txt
6
8
  functionalthreading.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ functionalthreading
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "functionalthreading"
3
- version = "0.2.3"
3
+ version = "0.2.4"
4
4
  authors = [
5
5
  { name="Richard Tong", email="richytong@gmail.com" },
6
6
  ]
@@ -8,5 +8,5 @@ with open('pyproject.toml', 'rb') as file:
8
8
  name='functionalthreading',
9
9
  version=pyproject['project']['version'],
10
10
  description='Functional programming with thread-based parallelism',
11
- packages=['src'],
11
+ packages=['functionalthreading'],
12
12
  )