ai-engram 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.
- ai_engram-0.0.1/PKG-INFO +5 -0
- ai_engram-0.0.1/README.md +1 -0
- ai_engram-0.0.1/pyproject.toml +12 -0
- ai_engram-0.0.1/setup.cfg +4 -0
- ai_engram-0.0.1/src/ai_engram/__init__.py +17 -0
- ai_engram-0.0.1/src/ai_engram.egg-info/PKG-INFO +5 -0
- ai_engram-0.0.1/src/ai_engram.egg-info/SOURCES.txt +7 -0
- ai_engram-0.0.1/src/ai_engram.egg-info/dependency_links.txt +1 -0
- ai_engram-0.0.1/src/ai_engram.egg-info/top_level.txt +1 -0
ai_engram-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# ai-engram
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ai-engram"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Neural network information editing library"
|
|
9
|
+
requires-python = ">=3.9"
|
|
10
|
+
|
|
11
|
+
[tool.setuptools.packages.find]
|
|
12
|
+
where = ["src"]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""AI Engram - Neural network information editing library.
|
|
2
|
+
|
|
3
|
+
This package is under development. Full release coming soon.
|
|
4
|
+
|
|
5
|
+
For more information, visit: https://github.com/jeakwon/ai-engram
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
__author__ = "Jea Kwon"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def __getattr__(name):
|
|
13
|
+
raise NotImplementedError(
|
|
14
|
+
f"ai-engram {__version__} is a placeholder. "
|
|
15
|
+
"Full functionality coming soon. "
|
|
16
|
+
"Visit https://github.com/jeakwon/ai-engram for updates."
|
|
17
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ai_engram
|