piot-fixture-zzz-python-hatch 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.
- piot_fixture_zzz_python_hatch-0.0.1/.github/workflows/release.yml +36 -0
- piot_fixture_zzz_python_hatch-0.0.1/.gitignore +23 -0
- piot_fixture_zzz_python_hatch-0.0.1/PKG-INFO +5 -0
- piot_fixture_zzz_python_hatch-0.0.1/putitoutthere.toml +10 -0
- piot_fixture_zzz_python_hatch-0.0.1/pyproject.toml +12 -0
- piot_fixture_zzz_python_hatch-0.0.1/src/piot_fixture_zzz_hatch/__init__.py +1 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release:
|
|
9
|
+
uses: thekevinscott/putitoutthere/.github/workflows/release.yml@v0
|
|
10
|
+
permissions:
|
|
11
|
+
contents: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
# PyPI upload runs in the caller's workflow context. Required because
|
|
15
|
+
# PyPI Trusted Publishers can't validate OIDC tokens minted from a
|
|
16
|
+
# cross-repo reusable workflow (pypi/warehouse#11096). The `if:`
|
|
17
|
+
# gate skips this job for non-PyPI repos — paste verbatim regardless
|
|
18
|
+
# of what you publish.
|
|
19
|
+
pypi-publish:
|
|
20
|
+
needs: release
|
|
21
|
+
if: needs.release.outputs.has_pypi == 'true'
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
permissions:
|
|
24
|
+
id-token: write
|
|
25
|
+
steps:
|
|
26
|
+
- uses: actions/download-artifact@v8
|
|
27
|
+
with:
|
|
28
|
+
pattern: '*-sdist'
|
|
29
|
+
path: dist/
|
|
30
|
+
merge-multiple: true
|
|
31
|
+
- uses: actions/download-artifact@v8
|
|
32
|
+
with:
|
|
33
|
+
pattern: '*-wheel-*'
|
|
34
|
+
path: dist/
|
|
35
|
+
merge-multiple: true
|
|
36
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -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.1"
|
|
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
|