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 +14 -0
- prizma-0.0.1/README.md +5 -0
- prizma-0.0.1/prizma/__init__.py +0 -0
- prizma-0.0.1/prizma/cli.py +4 -0
- prizma-0.0.1/pyproject.toml +18 -0
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
|
File without changes
|
|
@@ -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"]
|