jev-ra 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.
- jev_ra-0.0.1/PKG-INFO +18 -0
- jev_ra-0.0.1/README.md +5 -0
- jev_ra-0.0.1/jev_ra/__init__.py +1 -0
- jev_ra-0.0.1/pyproject.toml +19 -0
jev_ra-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: jev-ra
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Browser use for coding agents, driven by TypeSafe Jev decisions. Name reserved; first release coming soon.
|
|
5
|
+
Project-URL: Homepage, https://github.com/brnyxx/jev-ra
|
|
6
|
+
Author: Brian Kim
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.12
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# jev-ra
|
|
15
|
+
|
|
16
|
+
Browser use for coding agents (Claude Code, Codex, any MCP client), driven by TypeSafe Jev decisions.
|
|
17
|
+
|
|
18
|
+
This version only reserves the name. The first working release is in progress at https://github.com/brnyxx/jev-ra.
|
jev_ra-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "jev-ra"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Browser use for coding agents, driven by TypeSafe Jev decisions. Name reserved; first release coming soon."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
authors = [{ name = "Brian Kim" }]
|
|
9
|
+
classifiers = ["Development Status :: 1 - Planning", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3"]
|
|
10
|
+
|
|
11
|
+
[project.urls]
|
|
12
|
+
Homepage = "https://github.com/brnyxx/jev-ra"
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["jev_ra"]
|