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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: functionalthreading
3
- Version: 0.6.0
4
- Summary: Functional programming with thread-based parallelism
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 higher-order functions that enable the functional programming paradigm.
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 higher-order functions that enable the functional programming paradigm.
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
 
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: functionalthreading
3
- Version: 0.6.0
4
- Summary: Functional programming with thread-based parallelism
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 higher-order functions that enable the functional programming paradigm.
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.0"
3
+ version = "0.6.1"
4
4
  authors = [
5
5
  { name="Richard Tong", email="richytong@gmail.com" },
6
6
  ]
7
- description = "Functional programming with thread-based parallelism"
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='Functional programming with thread-based parallelism',
10
+ description='Concurrent functional programming with thread-based parallelism',
11
11
  packages=[
12
12
  'functionalthreading',
13
13
  'functionalthreading.classes',