functionalthreading 0.2.1__tar.gz → 0.2.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.
- functionalthreading-0.2.2/PKG-INFO +13 -0
- functionalthreading-0.2.2/functionalthreading.egg-info/PKG-INFO +13 -0
- {functionalthreading-0.2.1 → functionalthreading-0.2.2}/functionalthreading.egg-info/SOURCES.txt +2 -2
- {functionalthreading-0.2.1 → functionalthreading-0.2.2}/functionalthreading.egg-info/top_level.txt +0 -1
- functionalthreading-0.2.2/pyproject.toml +19 -0
- functionalthreading-0.2.2/setup.py +13 -0
- functionalthreading-0.2.1/PKG-INFO +0 -7
- functionalthreading-0.2.1/functionalthreading.egg-info/PKG-INFO +0 -7
- functionalthreading-0.2.1/package/__init__.py +0 -3
- functionalthreading-0.2.1/setup.py +0 -9
- {functionalthreading-0.2.1 → functionalthreading-0.2.2}/LICENSE +0 -0
- {functionalthreading-0.2.1 → functionalthreading-0.2.2}/functionalthreading.egg-info/dependency_links.txt +0 -0
- {functionalthreading-0.2.1 → functionalthreading-0.2.2}/functions/__init__.py +0 -0
- {functionalthreading-0.2.1 → functionalthreading-0.2.2}/setup.cfg +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: functionalthreading
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Functional programming with thread-based parallelism
|
|
5
|
+
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/richytong/functionalthreading
|
|
7
|
+
Project-URL: Issues, https://github.com/richytong/functionalthreading/issues
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.14
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: functionalthreading
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Functional programming with thread-based parallelism
|
|
5
|
+
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/richytong/functionalthreading
|
|
7
|
+
Project-URL: Issues, https://github.com/richytong/functionalthreading/issues
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.14
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Dynamic: license-file
|
{functionalthreading-0.2.1 → functionalthreading-0.2.2}/functionalthreading.egg-info/SOURCES.txt
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
LICENSE
|
|
2
|
+
pyproject.toml
|
|
2
3
|
setup.py
|
|
3
4
|
functionalthreading.egg-info/PKG-INFO
|
|
4
5
|
functionalthreading.egg-info/SOURCES.txt
|
|
5
6
|
functionalthreading.egg-info/dependency_links.txt
|
|
6
7
|
functionalthreading.egg-info/top_level.txt
|
|
7
|
-
functions/__init__.py
|
|
8
|
-
package/__init__.py
|
|
8
|
+
functions/__init__.py
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "functionalthreading"
|
|
3
|
+
version = "0.2.2"
|
|
4
|
+
authors = [
|
|
5
|
+
{ name="Richard Tong", email="richytong@gmail.com" },
|
|
6
|
+
]
|
|
7
|
+
description = "Functional programming with thread-based parallelism"
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.14"
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Programming Language :: Python :: 3",
|
|
12
|
+
"Operating System :: OS Independent",
|
|
13
|
+
]
|
|
14
|
+
# license = "CFOSS"
|
|
15
|
+
# license-files = ["LICENSE"]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/richytong/functionalthreading"
|
|
19
|
+
Issues = "https://github.com/richytong/functionalthreading/issues"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
from tomllib import load
|
|
3
|
+
|
|
4
|
+
with open('pyproject.toml', 'rb') as file:
|
|
5
|
+
pyproject = load(file)
|
|
6
|
+
print(pyproject)
|
|
7
|
+
|
|
8
|
+
setup(
|
|
9
|
+
name='functionalthreading',
|
|
10
|
+
version=pyproject['project']['version'],
|
|
11
|
+
description='Functional programming with thread-based parallelism',
|
|
12
|
+
packages=['functions'],
|
|
13
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|