functionalthreading 0.6.0__tar.gz → 0.6.1__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.
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/PKG-INFO +3 -3
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/README.md +1 -1
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/PKG-INFO +3 -3
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/pyproject.toml +2 -2
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/setup.py +1 -1
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/LICENSE +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading/__init__.py +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading/classes/__init__.py +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading/functions/__init__.py +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/SOURCES.txt +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/dependency_links.txt +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/top_level.txt +0 -0
- {functionalthreading-0.6.0 → functionalthreading-0.6.1}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.6.1
|
|
4
|
+
Summary: Concurrent 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
|
|
7
7
|
Project-URL: Issues, https://github.com/richytong/functionalthreading/issues
|
|
@@ -28,7 +28,7 @@ chain(
|
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## Introduction
|
|
31
|
-
The functionalthreading module provides functions for functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers
|
|
31
|
+
The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
|
|
32
32
|
|
|
33
33
|
## Reference
|
|
34
34
|
|
|
@@ -14,7 +14,7 @@ chain(
|
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## Introduction
|
|
17
|
-
The functionalthreading module provides functions for functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers
|
|
17
|
+
The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
|
|
18
18
|
|
|
19
19
|
## Reference
|
|
20
20
|
|
{functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/PKG-INFO
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.6.1
|
|
4
|
+
Summary: Concurrent 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
|
|
7
7
|
Project-URL: Issues, https://github.com/richytong/functionalthreading/issues
|
|
@@ -28,7 +28,7 @@ chain(
|
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## Introduction
|
|
31
|
-
The functionalthreading module provides functions for functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers
|
|
31
|
+
The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
|
|
32
32
|
|
|
33
33
|
## Reference
|
|
34
34
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "functionalthreading"
|
|
3
|
-
version = "0.6.
|
|
3
|
+
version = "0.6.1"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="Richard Tong", email="richytong@gmail.com" },
|
|
6
6
|
]
|
|
7
|
-
description = "
|
|
7
|
+
description = "Concurrent functional programming with thread-based parallelism"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.14"
|
|
10
10
|
classifiers = [
|
|
@@ -7,7 +7,7 @@ with open('pyproject.toml', 'rb') as file:
|
|
|
7
7
|
setup(
|
|
8
8
|
name='functionalthreading',
|
|
9
9
|
version=pyproject['project']['version'],
|
|
10
|
-
description='
|
|
10
|
+
description='Concurrent functional programming with thread-based parallelism',
|
|
11
11
|
packages=[
|
|
12
12
|
'functionalthreading',
|
|
13
13
|
'functionalthreading.classes',
|
|
File without changes
|
|
File without changes
|
{functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading/classes/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading/functions/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{functionalthreading-0.6.0 → functionalthreading-0.6.1}/functionalthreading.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|