openkb 0.0.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.
openkb-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.3
2
+ Name: openkb
3
+ Version: 0.0.1
4
+ Summary: Open Knowledge Base - coming soon.
5
+ License: MIT
6
+ Author: Ray
7
+ Author-email: ray@vectify.ai
8
+ Requires-Python: >=3.9,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Description-Content-Type: text/markdown
17
+
18
+ # openkb
19
+
20
+ Open Knowledge Base - coming soon.
21
+
openkb-0.0.1/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # openkb
2
+
3
+ Open Knowledge Base - coming soon.
@@ -0,0 +1,3 @@
1
+ """Open Knowledge Base."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,14 @@
1
+ [tool.poetry]
2
+ name = "openkb"
3
+ version = "0.0.1"
4
+ description = "Open Knowledge Base - coming soon."
5
+ authors = ["Ray <ray@vectify.ai>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.9"
11
+
12
+ [build-system]
13
+ requires = ["poetry-core"]
14
+ build-backend = "poetry.core.masonry.api"