chock 0.0.1a0__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.
- chock-0.0.1a0/PKG-INFO +15 -0
- chock-0.0.1a0/README.md +3 -0
- chock-0.0.1a0/pyproject.toml +25 -0
- chock-0.0.1a0/setup.cfg +4 -0
- chock-0.0.1a0/src/chock/__init__.py +3 -0
- chock-0.0.1a0/src/chock.egg-info/PKG-INFO +15 -0
- chock-0.0.1a0/src/chock.egg-info/SOURCES.txt +7 -0
- chock-0.0.1a0/src/chock.egg-info/dependency_links.txt +1 -0
- chock-0.0.1a0/src/chock.egg-info/top_level.txt +1 -0
chock-0.0.1a0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: chock
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Agent-neutral policy-engineering framework
|
|
5
|
+
Author: Open Coder AI
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Chock
|
|
14
|
+
|
|
15
|
+
Agent-neutral policy-engineering framework. First release coming soon.
|
chock-0.0.1a0/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Name-reservation stub. PyPI has no reservation mechanism -- a name is claimed
|
|
2
|
+
# only by uploading a distribution -- and versions are immutable, so this uploads
|
|
3
|
+
# a pre-release (0.0.1a0) to hold the name while leaving 0.0.1 free for the real
|
|
4
|
+
# first release. Contains no source code by design (repo is private until launch).
|
|
5
|
+
[project]
|
|
6
|
+
name = "chock"
|
|
7
|
+
version = "0.0.1a0"
|
|
8
|
+
description = "Agent-neutral policy-engineering framework"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{ name = "Open Coder AI" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: Apache Software License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["setuptools>=68"]
|
|
21
|
+
build-backend = "setuptools.build_meta"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools]
|
|
24
|
+
packages = ["chock"]
|
|
25
|
+
package-dir = { "" = "src" }
|
chock-0.0.1a0/setup.cfg
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: chock
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Agent-neutral policy-engineering framework
|
|
5
|
+
Author: Open Coder AI
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Chock
|
|
14
|
+
|
|
15
|
+
Agent-neutral policy-engineering framework. First release coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
chock
|