coretx 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.
- coretx-0.0.1/PKG-INFO +20 -0
- coretx-0.0.1/README.md +5 -0
- coretx-0.0.1/pyproject.toml +22 -0
- coretx-0.0.1/setup.cfg +4 -0
- coretx-0.0.1/src/coretx/__init__.py +2 -0
- coretx-0.0.1/src/coretx.egg-info/PKG-INFO +20 -0
- coretx-0.0.1/src/coretx.egg-info/SOURCES.txt +7 -0
- coretx-0.0.1/src/coretx.egg-info/dependency_links.txt +1 -0
- coretx-0.0.1/src/coretx.egg-info/top_level.txt +1 -0
coretx-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: coretx
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Intelligence infrastructure for knowledge that persists, connects, and compounds.
|
|
5
|
+
Author-email: "CoreTx Inc." <hello@coretx.ai>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://coretx.ai
|
|
8
|
+
Keywords: ai,memory,knowledge,intelligence
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# CoreTx
|
|
17
|
+
|
|
18
|
+
Intelligence infrastructure for knowledge that persists, connects, and compounds.
|
|
19
|
+
|
|
20
|
+
https://coretx.ai
|
coretx-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "coretx"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Intelligence infrastructure for knowledge that persists, connects, and compounds."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Proprietary"}
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{name = "CoreTx Inc.", email = "hello@coretx.ai"}]
|
|
13
|
+
keywords = ["ai", "memory", "knowledge", "intelligence"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://coretx.ai"
|
coretx-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: coretx
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Intelligence infrastructure for knowledge that persists, connects, and compounds.
|
|
5
|
+
Author-email: "CoreTx Inc." <hello@coretx.ai>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://coretx.ai
|
|
8
|
+
Keywords: ai,memory,knowledge,intelligence
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# CoreTx
|
|
17
|
+
|
|
18
|
+
Intelligence infrastructure for knowledge that persists, connects, and compounds.
|
|
19
|
+
|
|
20
|
+
https://coretx.ai
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
coretx
|