piot-fixture-zzz-python-hatch 0.0.1777323411__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.
- piot_fixture_zzz_python_hatch-0.0.1777323411/.github/workflows/release.yml +12 -0
- piot_fixture_zzz_python_hatch-0.0.1777323411/.gitignore +23 -0
- piot_fixture_zzz_python_hatch-0.0.1777323411/PKG-INFO +5 -0
- piot_fixture_zzz_python_hatch-0.0.1777323411/putitoutthere.toml +10 -0
- piot_fixture_zzz_python_hatch-0.0.1777323411/pyproject.toml +12 -0
- piot_fixture_zzz_python_hatch-0.0.1777323411/src/piot_fixture_zzz_hatch/__init__.py +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
node_modules/
|
|
2
|
+
dist/
|
|
3
|
+
dist-action/
|
|
4
|
+
coverage/
|
|
5
|
+
.DS_Store
|
|
6
|
+
*.log
|
|
7
|
+
.env
|
|
8
|
+
.env.local
|
|
9
|
+
*.tsbuildinfo
|
|
10
|
+
.claude/
|
|
11
|
+
|
|
12
|
+
# Eval harness output — snapshots accumulate per run; a representative
|
|
13
|
+
# snapshot triple is checked in explicitly via `git add -f`. All other
|
|
14
|
+
# runs stay local (each probe call costs API budget; we don't want the
|
|
15
|
+
# repo to grow unbounded).
|
|
16
|
+
evals/snapshots/*-raw.md
|
|
17
|
+
evals/snapshots/*-extracted.json
|
|
18
|
+
evals/snapshots/*-extracted.json.raw
|
|
19
|
+
evals/snapshots/*-grade.json
|
|
20
|
+
|
|
21
|
+
# actionlint binary (locally downloaded for repro; the CI workflow
|
|
22
|
+
# downloads its own copy on every run, see .github/workflows/actionlint.yml).
|
|
23
|
+
/actionlint
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "piot-fixture-zzz-python-hatch"
|
|
7
|
+
version = "0.0.1777323411"
|
|
8
|
+
description = "Put It Out There canary fixture. Safe to ignore."
|
|
9
|
+
license = { text = "MIT" }
|
|
10
|
+
|
|
11
|
+
[tool.hatch.build.targets.wheel]
|
|
12
|
+
packages = ["src/piot_fixture_zzz_hatch"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CANARY = True
|