izana 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.
- izana-0.0.1/.gitignore +35 -0
- izana-0.0.1/PKG-INFO +13 -0
- izana-0.0.1/README.md +5 -0
- izana-0.0.1/pyproject.toml +14 -0
- izana-0.0.1/src/izana/__init__.py +3 -0
izana-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.venv/
|
|
6
|
+
*.db
|
|
7
|
+
uv.lock
|
|
8
|
+
|
|
9
|
+
# Node
|
|
10
|
+
node_modules/
|
|
11
|
+
dist/
|
|
12
|
+
package-lock.json
|
|
13
|
+
|
|
14
|
+
# Rust — every crate's build dir, anywhere in the tree
|
|
15
|
+
target/
|
|
16
|
+
**/target/
|
|
17
|
+
|
|
18
|
+
# Playwright
|
|
19
|
+
/test-results/
|
|
20
|
+
/playwright-report/
|
|
21
|
+
/blob-report/
|
|
22
|
+
examples/django-react-site/harness/test-results/
|
|
23
|
+
|
|
24
|
+
# IDE
|
|
25
|
+
.idea/
|
|
26
|
+
.vscode/
|
|
27
|
+
|
|
28
|
+
# Build artifacts
|
|
29
|
+
protocol/mizan-generate/bin/mizan-generate-*
|
|
30
|
+
|
|
31
|
+
# Env
|
|
32
|
+
.env
|
|
33
|
+
.env.*
|
|
34
|
+
*.pem
|
|
35
|
+
*.key
|
izana-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: izana
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Izana: linked application state between backend and frontend. This name is held for the Izana framework ahead of its first release.
|
|
5
|
+
Author: Ryth Azhur
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# izana
|
|
10
|
+
|
|
11
|
+
Part of **Izana** — a framework where a `@client` decorator on a server function produces a typed, cache-invalidating frontend client.
|
|
12
|
+
|
|
13
|
+
This is a placeholder release holding the name ahead of the first public version. The framework exists and is in active development; watch this name.
|
izana-0.0.1/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# izana
|
|
2
|
+
|
|
3
|
+
Part of **Izana** — a framework where a `@client` decorator on a server function produces a typed, cache-invalidating frontend client.
|
|
4
|
+
|
|
5
|
+
This is a placeholder release holding the name ahead of the first public version. The framework exists and is in active development; watch this name.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "izana"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Izana: linked application state between backend and frontend. This name is held for the Izana framework ahead of its first release."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [{ name = "Ryth Azhur" }]
|
|
7
|
+
requires-python = ">=3.11"
|
|
8
|
+
|
|
9
|
+
[build-system]
|
|
10
|
+
requires = ["hatchling"]
|
|
11
|
+
build-backend = "hatchling.build"
|
|
12
|
+
|
|
13
|
+
[tool.hatch.build.targets.wheel]
|
|
14
|
+
packages = ["src/izana"]
|