Skip to content

Commit d3172d3

Browse files
committed
init
1 parent ec6280c commit d3172d3

6 files changed

Lines changed: 30 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,8 @@ jobs:
3232
needs:
3333
- release-build
3434
permissions:
35-
# IMPORTANT: this permission is mandatory for trusted publishing
3635
id-token: write
3736

38-
# Dedicated environments with protections for publishing are strongly recommended.
39-
# For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
4037
environment:
4138
name: pypi
4239
url: https://pypi.org/p/runtime-docs
@@ -51,4 +48,4 @@ jobs:
5148
- name: Publish release distributions to PyPI
5249
uses: pypa/gh-action-pypi-publish@release/v1
5350
with:
54-
packages-dir: dist/
51+
password: ${{ secrets.PYPI_API_TOKEN }}

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv
11+
12+
# Lock files
13+
uv.lock

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
# runtime-docs
3+
4+
Runtime access to Python class attribute docstrings (PEP 224)

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[project]
2+
name = "runtime-docs"
3+
version = "0.0.0"
4+
description = "Runtime access to Python class attribute docstrings (PEP 224)"
5+
readme = "README.md"
6+
authors = [{ name = "gesslerpd", email = "[email protected]" }]
7+
requires-python = ">=3.10"
8+
dependencies = []
9+
10+
[build-system]
11+
requires = ["uv-build>=0.8.2"]
12+
build-backend = "uv_build"

src/runtime_docs/__init__.py

Whitespace-only changes.

src/runtime_docs/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)