levain 0.0.0__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.
levain-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: levain
3
+ Version: 0.0.0
4
+ Summary: A portable cognitive-partnership memory + methodology kit. Placeholder — package in active development.
5
+ Project-URL: Homepage, https://github.com/levainhq
6
+ Author: Phillip Clapham
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Levain
15
+
16
+ A portable cognitive-partnership memory + methodology kit.
17
+
18
+ **Status: placeholder.** This name is reserved; the package is in active
19
+ development and not yet usable. Watch this space.
levain-0.0.0/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Levain
2
+
3
+ A portable cognitive-partnership memory + methodology kit.
4
+
5
+ **Status: placeholder.** This name is reserved; the package is in active
6
+ development and not yet usable. Watch this space.
@@ -0,0 +1,3 @@
1
+ """Levain — placeholder. Package in active development."""
2
+
3
+ __version__ = "0.0.0"
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "levain"
7
+ version = "0.0.0"
8
+ description = "A portable cognitive-partnership memory + methodology kit. Placeholder — package in active development."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [{ name = "Phillip Clapham" }]
12
+ classifiers = [
13
+ "Development Status :: 1 - Planning",
14
+ "Intended Audience :: Developers",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://github.com/levainhq"