topsoil 0.0.0__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.
- topsoil-0.0.0/.gitignore +19 -0
- topsoil-0.0.0/PKG-INFO +21 -0
- topsoil-0.0.0/PYPI-README.md +8 -0
- topsoil-0.0.0/pyproject.toml +32 -0
- topsoil-0.0.0/src/topsoil/__init__.py +8 -0
topsoil-0.0.0/.gitignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
.venv/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
*.egg-info/
|
|
8
|
+
.mypy_cache/
|
|
9
|
+
.ruff_cache/
|
|
10
|
+
.pytest_cache/
|
|
11
|
+
|
|
12
|
+
# Never in this repo: engagement data of any kind.
|
|
13
|
+
# Fixtures are synthetic and hand-written; see CLAUDE.md.
|
|
14
|
+
*.csv
|
|
15
|
+
*.xlsx
|
|
16
|
+
*.jsonl
|
|
17
|
+
labels/
|
|
18
|
+
exports/
|
|
19
|
+
plots/
|
topsoil-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: topsoil
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Groundedness auditing: label spaces, deterministic checks, and review surfaces for AI outputs. Early development.
|
|
5
|
+
Author: Clearwood AI
|
|
6
|
+
Keywords: annotation,auditing,evaluation,groundedness,labeling
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# topsoil
|
|
15
|
+
|
|
16
|
+
Groundedness auditing for AI systems: a versioned label space you can instantiate per application,
|
|
17
|
+
deterministic checks, a sampler that knows which sample a statistic may come from, and a review
|
|
18
|
+
surface a human can work through.
|
|
19
|
+
|
|
20
|
+
**This is a placeholder release. There is no public API yet.** The design is settled and
|
|
21
|
+
implementation is in progress. A first usable version will follow.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# topsoil
|
|
2
|
+
|
|
3
|
+
Groundedness auditing for AI systems: a versioned label space you can instantiate per application,
|
|
4
|
+
deterministic checks, a sampler that knows which sample a statistic may come from, and a review
|
|
5
|
+
surface a human can work through.
|
|
6
|
+
|
|
7
|
+
**This is a placeholder release. There is no public API yet.** The design is settled and
|
|
8
|
+
implementation is in progress. A first usable version will follow.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "topsoil"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Groundedness auditing: label spaces, deterministic checks, and review surfaces for AI outputs. Early development."
|
|
9
|
+
readme = "PYPI-README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [{ name = "Clearwood AI" }]
|
|
12
|
+
keywords = ["groundedness", "evaluation", "auditing", "annotation", "labeling"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
# No license declared on purpose. The repository is private and open-sourcing is a
|
|
21
|
+
# later, deliberate decision; declaring a license here would make that commitment
|
|
22
|
+
# casually. Add one in the same change that opens the repository.
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["src/topsoil"]
|
|
26
|
+
|
|
27
|
+
# The sdist ships an explicit allowlist, not "everything git does not ignore".
|
|
28
|
+
# Hatchling's default would put every design document in this repo into a public
|
|
29
|
+
# artifact, and a PyPI upload is immutable: replacing a file means yanking and
|
|
30
|
+
# bumping. Anything added here becomes public on the next release.
|
|
31
|
+
[tool.hatch.build.targets.sdist]
|
|
32
|
+
only-include = ["src/topsoil", "PYPI-README.md", "pyproject.toml"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""topsoil: groundedness auditing.
|
|
2
|
+
|
|
3
|
+
Placeholder. This module exists so a distribution can be built and the package name
|
|
4
|
+
claimed; there is no public API yet. See the repository's design documents, starting
|
|
5
|
+
with CONCEPTS.md, for the shape implementation will follow.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.0"
|