tzomo 0.0.1a0__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.
tzomo-0.0.1a0/PKG-INFO ADDED
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: tzomo
3
+ Version: 0.0.1a0
4
+ Summary: Tzomo: a high-performance graph computation platform (in development)
5
+ Project-URL: Homepage, https://github.com/MHughesDev/tzomo
6
+ Project-URL: Repository, https://github.com/MHughesDev/tzomo
7
+ Author: Mason Hughes
8
+ License-Expression: MIT
9
+ Keywords: graph,graph-theory,graphs,network-analysis,spectral
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Programming Language :: C++
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+
16
+ # Tzomo
17
+
18
+ **Placeholder release reserving the package name.**
19
+
20
+ Tzomo is a high-performance graph computation platform (modern C++ core with Python
21
+ bindings), currently in early development. This release contains no functionality.
22
+
23
+ Project home: https://github.com/MHughesDev/tzomo
@@ -0,0 +1,8 @@
1
+ # Tzomo
2
+
3
+ **Placeholder release reserving the package name.**
4
+
5
+ Tzomo is a high-performance graph computation platform (modern C++ core with Python
6
+ bindings), currently in early development. This release contains no functionality.
7
+
8
+ Project home: https://github.com/MHughesDev/tzomo
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "tzomo"
7
+ version = "0.0.1a0"
8
+ description = "Tzomo: a high-performance graph computation platform (in development)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{ name = "Mason Hughes" }]
13
+ keywords = ["graph", "graphs", "network-analysis", "spectral", "graph-theory"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: C++",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/MHughesDev/tzomo"
22
+ Repository = "https://github.com/MHughesDev/tzomo"
@@ -0,0 +1,7 @@
1
+ """Tzomo: a high-performance graph computation platform (in development).
2
+
3
+ This is a name-reservation placeholder; no functionality is included yet.
4
+ See https://github.com/MHughesDev/tzomo
5
+ """
6
+
7
+ __version__ = "0.0.1a0"