jevbrief 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.
- jevbrief-0.0.1/PKG-INFO +18 -0
- jevbrief-0.0.1/README.md +8 -0
- jevbrief-0.0.1/jevbrief/__init__.py +1 -0
- jevbrief-0.0.1/pyproject.toml +15 -0
jevbrief-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: jevbrief
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Clean, traceable state briefings for TypeSafe's Jev model. Early placeholder, v0.1.0 coming soon.
|
|
5
|
+
Project-URL: Homepage, https://github.com/parthkomalwad/jevbrief
|
|
6
|
+
Author: Parth Komalwad
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# jevbrief
|
|
12
|
+
> Clean, traceable state briefings for TypeSafe's Jev model.
|
|
13
|
+
|
|
14
|
+
jevbrief turns messy sources like web pages into small, clean state for Jev, drops the noise with deterministic rules, and records exactly what was kept, what was dropped, and why.
|
|
15
|
+
|
|
16
|
+
**Status:** under active development. v0.1.0 (Python, web page adapter, trace viewer) ships tonight, Wednesday, September 23, 2026.
|
|
17
|
+
|
|
18
|
+
Community project, not affiliated with TypeSafe AI.
|
jevbrief-0.0.1/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# jevbrief
|
|
2
|
+
> Clean, traceable state briefings for TypeSafe's Jev model.
|
|
3
|
+
|
|
4
|
+
jevbrief turns messy sources like web pages into small, clean state for Jev, drops the noise with deterministic rules, and records exactly what was kept, what was dropped, and why.
|
|
5
|
+
|
|
6
|
+
**Status:** under active development. v0.1.0 (Python, web page adapter, trace viewer) ships tonight, Wednesday, September 23, 2026.
|
|
7
|
+
|
|
8
|
+
Community project, not affiliated with TypeSafe AI.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "jevbrief"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Clean, traceable state briefings for TypeSafe's Jev model. Early placeholder, v0.1.0 coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "Parth Komalwad" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://github.com/parthkomalwad/jevbrief"
|