auverndb 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.
- auverndb-0.0.1/PKG-INFO +18 -0
- auverndb-0.0.1/README.md +6 -0
- auverndb-0.0.1/pyproject.toml +22 -0
- auverndb-0.0.1/setup.cfg +4 -0
- auverndb-0.0.1/src/auverndb/__init__.py +9 -0
- auverndb-0.0.1/src/auverndb.egg-info/PKG-INFO +18 -0
- auverndb-0.0.1/src/auverndb.egg-info/SOURCES.txt +7 -0
- auverndb-0.0.1/src/auverndb.egg-info/dependency_links.txt +1 -0
- auverndb-0.0.1/src/auverndb.egg-info/top_level.txt +1 -0
auverndb-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: auverndb
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the official Auvern client SDK. The real package lands at launch — https://auvern.ai
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://auvern.ai
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# auverndb
|
|
14
|
+
|
|
15
|
+
Name reservation for **Auvern** — the memory engine for AI agents. The
|
|
16
|
+
canonical package is [`auvern`](https://pypi.org/project/auvern/).
|
|
17
|
+
|
|
18
|
+
https://auvern.ai
|
auverndb-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "auverndb"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder for the official Auvern client SDK. The real package lands at launch — https://auvern.ai"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"License :: OSI Approved :: Apache Software License",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://auvern.ai"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools.packages.find]
|
|
22
|
+
where = ["src"]
|
auverndb-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: auverndb
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the official Auvern client SDK. The real package lands at launch — https://auvern.ai
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://auvern.ai
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# auverndb
|
|
14
|
+
|
|
15
|
+
Name reservation for **Auvern** — the memory engine for AI agents. The
|
|
16
|
+
canonical package is [`auvern`](https://pypi.org/project/auvern/).
|
|
17
|
+
|
|
18
|
+
https://auvern.ai
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
auverndb
|