prizma 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.
prizma-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.5
2
+ Name: prizma
3
+ Version: 0.0.1
4
+ Summary: Prizma - one AI covering chat, office, agent, and coding.
5
+ Author: candy_xt
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # Prizma
11
+
12
+ Prizma — one AI, four prisms: chat / office / agent / coding.
13
+
14
+ Placeholder release (0.0.1) to reserve the package name. Full rewrite in progress.
prizma-0.0.1/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Prizma
2
+
3
+ Prizma — one AI, four prisms: chat / office / agent / coding.
4
+
5
+ Placeholder release (0.0.1) to reserve the package name. Full rewrite in progress.
File without changes
@@ -0,0 +1,4 @@
1
+ def main():
2
+ print("Prizma v0.0.1 — placeholder release.")
3
+ print("One AI, four prisms: chat / office / agent / coding.")
4
+ print("Full rewrite in progress. https://gitee.com/candy_xt")
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "prizma"
7
+ version = "0.0.1"
8
+ description = "Prizma - one AI covering chat, office, agent, and coding."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "candy_xt" }]
13
+
14
+ [project.scripts]
15
+ prizma = "prizma.cli:main"
16
+
17
+ [tool.hatch.build.targets.wheel]
18
+ packages = ["prizma"]