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.
@@ -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
@@ -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
+ )
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: functionalthreading
3
- Version: 0.2.1
4
- Summary: Functional programming with thread-based parallelism.
5
- License-File: LICENSE
6
- Dynamic: license-file
7
- Dynamic: summary
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: functionalthreading
3
- Version: 0.2.1
4
- Summary: Functional programming with thread-based parallelism.
5
- License-File: LICENSE
6
- Dynamic: license-file
7
- Dynamic: summary
@@ -1,3 +0,0 @@
1
- version = '0.2.1'
2
-
3
- __all__ = ['version']
@@ -1,9 +0,0 @@
1
- from setuptools import setup
2
- from package import version
3
-
4
- setup(
5
- name='functionalthreading',
6
- version=version,
7
- description='Functional programming with thread-based parallelism.',
8
- packages=['package', 'functions'],
9
- )