Python PyPI Package Builder Skill
A complete, battle-tested guide for building, testing, linting, versioning, typing, and
publishing a production-grade Python library to PyPI — from first commit to community-ready
release.
AI Agent Instruction: Read this entire file before writing a single line of code or
creating any file. Every decision — layout, backend, versioning strategy, patterns, CI —
has a decision rule here. Follow the decision trees in order. This skill applies to any
Python package type (utility, SDK, CLI, plugin, data library). Do not skip sections.
Quick Navigation
| Reference file |
What it covers |
references/pyproject-toml.md |
All four backend templates, setuptools_scm, py.typed, tool configs |
references/library-patterns.md |
OOP/SOLID, type hints, core class design, factory, protocols, CLI |
references/testing-quality.md |
conftest.py, unit/backend/async tests, ruff/mypy/pre-commit |
references/ci-publishing.md |
ci.yml, publish.yml, Trusted Publishing, TestPyPI, CHANGELOG, release checklist |
references/community-docs.md |
README, docstrings, CONTRIBUTING, SECURITY, anti-patterns, master checklist |
references/architecture-patterns.md |
Backend system (plugin/strategy), config layer, transport layer, CLI, backend injection |
references/versioning-strategy.md |
PEP 440, SemVer, pre-release, setuptools_scm deep-dive, flit static, decision engine |
references/release-governance.md |
Branch strategy, branch protection, OIDC, tag author validation, prevent invalid tags |
references/tooling-ruff.md |
Ruff-only setup (replaces black/isort), mypy config, pre-commit, asyncio_mode=auto |
Scaffold script: run python skills/python-pypi-package-builder/scripts/scaffold.py --name your-package-name
to generate the entire directory layout, stub files, and pyproject.toml in one command.
1. Skill Trigger
Load this skill whenever the user wants to:
- Create, scaffold, or publish a Python package or library to PyPI
- Build a pip-installable SDK, utility, CLI tool, or framework extension
- Set up
pyproject.toml, linting, mypy, pre-commit, or GitHub Actions for a Python project
- Understand versioning (
setuptools_scm, PEP 440, semver, static versioning)
- Understand PyPA specs:
py.typed, MANIFEST.in, RECORD, classifiers
- Publish to PyPI using Trusted Publishing (OIDC) or API tokens
- Refactor an existing package to follow modern Python packaging standards
- Add type hints, protocols, ABCs, or dataclasses to a Python library
- Apply OOP/SOLID design patterns to a Python package
- Choose between build backends (setuptools, hatchling, flit, poetry)
Also trigger for phrases like: "build a Python SDK", "publish my library", "set up PyPI CI",
"create a pip package", "how do I publish to PyPI", "pyproject.toml help", "PEP 561 typed",
"setuptools_scm version", "semver Python", "PEP 440", "git tag release", "Trusted Publishing".
2. Package Type Decision
Identify what the user is building before writing any code. Each type has distinct patterns.
Decision Table
| Type |
Core Pattern |
Entry Point |
Key Deps |
Example Packages |
| Utility library |
Module of pure functions + helpers |
Import API only |
Minimal |
arrow, humanize, boltons, more-itertools |
| API client / SDK |
Class with methods, auth, retry logic |
Import API only |
httpx or requests |
boto3, stripe-python, openai |
| CLI tool |
Command functions + argument parser |
[project.scripts] or [project.entry-points] |
click or typer |
black, ruff, httpie, rich |
| Framework plugin |
Plugin class, hook registration |
[project.entry-points."framework.plugin"] |
Framework dep |
pytest-*, django-*, flask-* |
| Data processing library |
Classes + functional pipeline |
Import API only |
Optional: numpy, pandas |
pydantic, marshmallow, cerberus |
| Mixed / generic |
Combination of above |
Varies |
Varies |
Many real-world packages |
Decision Rule: Ask the user if unclear. A package can combine types (e.g., SDK with a CLI
entry point) — use the primary type for structural decisions and add secondary type patterns on top.
For implementation patterns of each type, see references/library-patterns.md.
Package Naming Rules
- PyPI name: all lowercase, hyphens —
my-python-library
- Python import name: underscores —
my_python_library
- Check availability: https://pypi.org/search/ before starting
- Avoid shadowing popular packages (verify
pip install <name> fails first)
3. Folder Structure Decision
Decision Tree
Does the package have 5+ internal modules OR multiple contributors OR complex sub-packages?
├── YES → Use src/ layout
│ Reason: prevents accidental import of uninstalled code during development;
│ separates source from project root files; PyPA-recommended for large projects.
│
├── NO → Is it a single-module, focused package (e.g., one file + helpers)?
│ ├── YES → Use flat layout
│ └── NO (medium complexity) → Use flat layout, migrate to src/ if it grows
│
└── Is it multiple related packages under one namespace (e.g., myorg.http, myorg.db)?
└── YES → Use namespace/monorepo layout
Quick Rule Summary
| Situation |
Use |
| New project, unknown future size |
src/ layout (safest default) |
| Single-purpose, 1–4 modules |
Flat layout |
| Large library, many contributors |
src/ layout |
| Multiple packages in one repo |
Namespace / monorepo |
| Migrating old flat project |
Keep flat; migrate to src/ at next major version |
4. Build Backend Decision
Decision Tree
Does the user need version derived automatically from git tags?
├── YES → Use setuptools + setuptools_scm
│ (git tag v1.0.0 → that IS your release workflow)
│
└── NO → Does the user want an all-in-one tool (deps + build + publish)?
├── YES → Use poetry (v2+ supports standard [project] table)
│
└── NO → Is the package pure Python with no C extensions?
├── YES, minimal config preferred → Use flit
│ (zero config, auto-discovers version from __version__)
│
└── YES, modern & fast preferred → Use hatchling
(zero-config, plugin system, no setup.py needed)
Does the package have C/Cython/Fortran extensions?
└── YES → MUST use setuptools (only backend with full native extension support)
Backend Comparison
| Backend |
Version source |
Config |
C extensions |
Best for |
setuptools + setuptools_scm |
git tags (automatic) |
pyproject.toml + optional setup.py shim |
Yes |
Projects with git-tag releases; any complexity |
hatchling |
manual or plugin |
pyproject.toml only |
No |
New pure-Python projects; fast, modern |
flit |
__version__ in __init__.py |
pyproject.toml only |
No |
Very simple, single-module packages |
poetry |
pyproject.toml field |
pyproject.toml only |
No |
Teams wanting integrated dep management |
For all four complete pyproject.toml templates, see references/pyproject-toml.md.
5. PyPA Packaging Flow
This is the canonical end-to-end flow from source code to user install.
Every step must be understood before publishing.
1. SOURCE TREE
Your code in version control (git)
└── pyproject.toml describes metadata + build system
2. BUILD
python -m build
└── Produces two artifacts in dist/:
├── *.tar.gz → source distribution (sdist)
└── *.whl → built distribution (wheel) — preferred by pip
3. VALIDATE
twine check dist/*
└── Checks metadata, README rendering, and PyPI compatibility
4. TEST PUBLISH (first release only)
twine upload --repository testpypi dist/*
└── Verify: pip install --index-url https://test.pypi.org/simple/ your-package
5. PUBLISH
twine upload dist/* ← manual fallback
OR GitHub Actions publish.yml ← recommended (Trusted Publishing / OIDC)
6. USER INSTALL
pip install your-package
pip install "your-package[extra]"
Key PyPA Concepts
| Concept |
What it means |
| sdist |
Source distribution — your source + metadata; used when no wheel is available |
| wheel (.whl) |
Pre-built binary — pip extracts directly into site-packages; no build step |
| PEP 517/518 |
Standard build system interface via pyproject.toml [build-system] table |
| PEP 621 |
Standard [project] table in pyproject.toml; all modern backends support it |
| PEP 639 |
license key as SPDX string (e.g., "MIT", "Apache-2.0") — not {text = "MIT"} |
| PEP 561 |
py.typed empty marker file — tells mypy/IDEs this package ships type information |
For complete CI workflow and publishing setup, see references/ci-publishing.md.
6. Project Structure Templates
A. src/ Layout (Recommended default for new projects)
your-package/
├── src/
│ └── your_package/
│ ├── __init__.py # Public API: __all__, __version__
│ ├── py.typed # PEP 561 marker — EMPTY FILE
│ ├── core.py # Primary implementation
│ ├── client.py # (API client type) or remove
│ ├── cli.py # (CLI type) click/typer commands, or remove
│ ├── config.py # Settings / configuration dataclass
│ ├── exceptions.py # Custom exception hierarchy
│ ├── models.py # Data classes, Pydantic models, TypedDicts
│ ├── utils.py # Internal helpers (prefix _utils if private)
│ ├── types.py # Shared type aliases and TypeVars
│ └── backends/ # (Plugin pattern) — remove if not needed
│ ├── __init__.py # Protocol / ABC interface definition
│ ├── memory.py # Default zero-dep implementation
│ └── redis.py # Optional heavy implementation
├── tests/
│ ├── __init__.py
│ ├── conftest.py # Shared fixtures
│ ├── unit/
│ │ ├── __init__.py
│ │ ├── test_core.py
│ │ ├── test_config.py
│ │ └── test_models.py
│ ├── integration/
│ │ ├── __init__.py
│ │ └── test_backends.py
│ └── e2e/ # Optional: end-to-end tests
│ └── __init__.py
├── docs/ # Optional: mkdocs or sphinx
├── scripts/
│ └── scaffold.py
├── .github/
│ ├── workflows/
│ │ ├── ci.yml
│ │ └── publish.yml
│ └── ISSUE_TEMPLATE/
│ ├── bug_report.md
│ └── feature_request.md
├── .pre-commit-config.yaml
├── pyproject.toml
├── CHANGELOG.md
├── CONTRIBUTING.md
├── SECURITY.md
├── LICENSE
├── README.md
└── .gitignore
B. Flat Layout (Small / focused packages)
your-package/
├── your_package/ # ← at root, not inside src/
│ ├── __init__.py
│ ├── py.typed
│ └── ... (same internal structure)
├── tests/
└── ... (same top-level files)
C. Namespace / Monorepo Layout (Multiple related packages)
your-org/
├── packages/
│ ├── your-org-core/
│ │ ├── src/your_org/core/
│ │ └── pyproject.toml
│ ├── your-org-http/
│ │ ├── src/your_org/http/
│ │ └── pyproject.toml
│ └── your-org-cli/
│ ├── src/your_org/cli/
│ └── pyproject.toml
├── .github/workflows/
└── README.md
Each sub-package has its own pyproject.toml. They share the your_org namespace via PEP 420
implicit namespace packages (no __init__.py in the namespace root).
Internal Module Guidelines
| File |
Purpose |
When to include |
__init__.py |
Public API surface; re-exports; __version__ |
Always |
py.typed |
PEP 561 typed-package marker (empty) |
Always |
core.py |
Primary class / main logic |
Always |
config.py |
Settings dataclass or Pydantic model |
When configurable |
exceptions.py |
Exception hierarchy (YourBaseError → specifics) |
Always |
models.py |
Data models / DTOs / TypedDicts |
When data-heavy |
utils.py |
Internal helpers (not part of public API) |
As needed |
types.py |
Shared TypeVar, TypeAlias, Protocol definitions |
When complex typing |
cli.py |
CLI entry points (click/typer) |
CLI type only |
backends/ |
Plugin/strategy pattern |
When swappable implementations |
_compat.py |
Python version compatibility shims |
When 3.9–3.13 compat needed |
7. Versioning Strategy
PEP 440 — The Standard
Canonical form: N[.N]+[{a|b|rc}N][.postN][.devN]
Examples:
1.0.0 Stable release
1.0.0a1 Alpha (pre-release)
1.0.0b2 Beta
1.0.0rc1 Release candidate
1.0.0.post1 Post-release (e.g., packaging fix only)
1.0.0.dev1 Development snapshot (not for PyPI)
Semantic Versioning (recommended)
MAJOR.MINOR.PATCH
MAJOR: Breaking API change (remove/rename public function/class/arg)
MINOR: New feature, fully backward-compatible
PATCH: Bug fix, no API change
Dynamic versioning with setuptools_scm (recommended for git-tag workflows)
# How it works:
git tag v1.0.0 → installed version = 1.0.0
git tag v1.1.0 → installed version = 1.1.0
(commits after tag) → version = 1.1.0.post1 (suffix stripped for PyPI)
# In code — NEVER hardcode when using setuptools_scm:
from importlib.metadata import version, PackageNotFoundError
try:
__version__ = version("your-package")
except PackageNotFoundError:
__version__ = "0.0.0-dev" # Fallback for uninstalled dev checkouts
Required pyproject.toml config:
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version" # Prevents +g<hash> from breaking PyPI uploads
Critical: always set fetch-depth: 0 in every CI checkout step. Without full git history,
setuptools_scm cannot find tags and the build version silently falls back to 0.0.0+dev.
Static versioning (flit, hatchling manual, poetry)
# your_package/__init__.py
__version__ = "1.0.0" # Update this before every release
Version specifier best practices for dependencies
# In [project] dependencies:
"httpx>=0.24" # Minimum version — PREFERRED for libraries
"httpx>=0.24,<1.0" # Upper bound only when a known breaking change exists
"httpx==0.27.0" # Pin exactly ONLY in applications, NOT libraries
# NEVER do this in a library — it breaks dependency resolution for users:
# "httpx~=0.24.0" # Too tight
# "httpx==0.27.*" # Fragile
Version bump → release flow
# 1. Update CHANGELOG.md — move [Unreleased] entries to [x.y.z] - YYYY-MM-DD
# 2. Commit the changelog
git add CHANGELOG.md
git commit -m "chore: prepare release vX.Y.Z"
# 3. Tag and push — this triggers publish.yml automatically
git tag vX.Y.Z
git push origin main --tags
# 4. Monitor GitHub Actions → verify on https://pypi.org/project/your-package/
For complete pyproject.toml templates for all four backends, see references/pyproject-toml.md.
Where to Go Next
After understanding decisions and structure:
Set up pyproject.toml → references/pyproject-toml.md
All four backend templates (setuptools+scm, hatchling, flit, poetry), full tool configs,
py.typed setup, versioning config.
Write your library code → references/library-patterns.md
OOP/SOLID principles, type hints (PEP 484/526/544/561), core class design, factory functions,
__init__.py, plugin/backend pattern, CLI entry point.
Add tests and code quality → references/testing-quality.md
conftest.py, unit/backend/async tests, parametrize, ruff/mypy/pre-commit setup.
Set up CI/CD and publish → references/ci-publishing.md
ci.yml, publish.yml with Trusted Publishing (OIDC, no API tokens), CHANGELOG format,
release checklist.
Polish for community/OSS → references/community-docs.md
README sections, docstring format, CONTRIBUTING, SECURITY, issue templates, anti-patterns
table, and master release checklist.
Design backends, config, transport, CLI → references/architecture-patterns.md
Backend system (plugin/strategy pattern), Settings dataclass, HTTP transport layer,
CLI with click/typer, backend injection rules.
Choose and implement a versioning strategy → references/versioning-strategy.md
PEP 440 canonical forms, SemVer rules, pre-release identifiers, setuptools_scm deep-dive,
flit static versioning, decision engine (DEFAULT/BEGINNER/MINIMAL).
Govern releases and secure the publish pipeline → references/release-governance.md
Branch strategy, branch protection rules, OIDC Trusted Publishing setup, tag author
validation in CI, tag format enforcement, full governed publish.yml.
Simplify tooling with Ruff → references/tooling-ruff.md
Ruff-only setup replacing black/isort/flake8, mypy config, pre-commit hooks,
asyncio_mode=auto (remove @pytest.mark.asyncio), migration guide.
1---2name: python-pypi-package-builder3description: End-to-end skill for building, testing, linting, versioning, and publishing a production-grade Python library to PyPI. Covers all four build backends (setuptools+setuptools_scm, hatchling, flit, poetry), PEP 440 versioning, semantic versioning, dynamic git-tag versioning, OOP/SOLID design, type hints (PEP 484/526/544/561), Trusted Publishing (OIDC), and the full PyPA packaging flow. Use for: creating Python packages, pip-installable SDKs, CLI tools, framework plugins, pyproject.toml setup, py.typed, setuptools_scm, semver, mypy, pre-commit, GitHub Actions CI/CD, or PyPI publishing.4---56# Python PyPI Package Builder Skill78A complete, battle-tested guide for building, testing, linting, versioning, typing, and9publishing a production-grade Python library to PyPI — from first commit to community-ready10release.1112> **AI Agent Instruction:** Read this entire file before writing a single line of code or13> creating any file. Every decision — layout, backend, versioning strategy, patterns, CI —14> has a decision rule here. Follow the decision trees in order. This skill applies to any15> Python package type (utility, SDK, CLI, plugin, data library). Do not skip sections.1617---1819## Quick Navigation2021| Section in this file | What it covers |22|---|---|23| [1. Skill Trigger](#1-skill-trigger) | When to load this skill |24| [2. Package Type Decision](#2-package-type-decision) | Identify what you are building |25| [3. Folder Structure Decision](#3-folder-structure-decision) | src/ vs flat vs monorepo |26| [4. Build Backend Decision](#4-build-backend-decision) | setuptools / hatchling / flit / poetry |27| [5. PyPA Packaging Flow](#5-pypa-packaging-flow) | The canonical publish pipeline |28| [6. Project Structure Templates](#6-project-structure-templates) | Full layouts for every option |29| [7. Versioning Strategy](#7-versioning-strategy) | PEP 440, semver, dynamic vs static |3031| Reference file | What it covers |32|---|---|33| `references/pyproject-toml.md` | All four backend templates, `setuptools_scm`, `py.typed`, tool configs |34| `references/library-patterns.md` | OOP/SOLID, type hints, core class design, factory, protocols, CLI |35| `references/testing-quality.md` | `conftest.py`, unit/backend/async tests, ruff/mypy/pre-commit |36| `references/ci-publishing.md` | `ci.yml`, `publish.yml`, Trusted Publishing, TestPyPI, CHANGELOG, release checklist |37| `references/community-docs.md` | README, docstrings, CONTRIBUTING, SECURITY, anti-patterns, master checklist |38| `references/architecture-patterns.md` | Backend system (plugin/strategy), config layer, transport layer, CLI, backend injection |39| `references/versioning-strategy.md` | PEP 440, SemVer, pre-release, setuptools_scm deep-dive, flit static, decision engine |40| `references/release-governance.md` | Branch strategy, branch protection, OIDC, tag author validation, prevent invalid tags |41| `references/tooling-ruff.md` | Ruff-only setup (replaces black/isort), mypy config, pre-commit, asyncio_mode=auto |4243**Scaffold script:** run `python skills/python-pypi-package-builder/scripts/scaffold.py --name your-package-name`44to generate the entire directory layout, stub files, and `pyproject.toml` in one command.4546---4748## 1. Skill Trigger4950Load this skill whenever the user wants to:5152- Create, scaffold, or publish a Python package or library to PyPI53- Build a pip-installable SDK, utility, CLI tool, or framework extension54- Set up `pyproject.toml`, linting, mypy, pre-commit, or GitHub Actions for a Python project55- Understand versioning (`setuptools_scm`, PEP 440, semver, static versioning)56- Understand PyPA specs: `py.typed`, `MANIFEST.in`, `RECORD`, classifiers57- Publish to PyPI using Trusted Publishing (OIDC) or API tokens58- Refactor an existing package to follow modern Python packaging standards59- Add type hints, protocols, ABCs, or dataclasses to a Python library60- Apply OOP/SOLID design patterns to a Python package61- Choose between build backends (setuptools, hatchling, flit, poetry)6263**Also trigger for phrases like:** "build a Python SDK", "publish my library", "set up PyPI CI",64"create a pip package", "how do I publish to PyPI", "pyproject.toml help", "PEP 561 typed",65"setuptools_scm version", "semver Python", "PEP 440", "git tag release", "Trusted Publishing".6667---6869## 2. Package Type Decision7071Identify what the user is building **before** writing any code. Each type has distinct patterns.7273### Decision Table7475| Type | Core Pattern | Entry Point | Key Deps | Example Packages |76|---|---|---|---|---|77| **Utility library** | Module of pure functions + helpers | Import API only | Minimal | `arrow`, `humanize`, `boltons`, `more-itertools` |78| **API client / SDK** | Class with methods, auth, retry logic | Import API only | `httpx` or `requests` | `boto3`, `stripe-python`, `openai` |79| **CLI tool** | Command functions + argument parser | `[project.scripts]` or `[project.entry-points]` | `click` or `typer` | `black`, `ruff`, `httpie`, `rich` |80| **Framework plugin** | Plugin class, hook registration | `[project.entry-points."framework.plugin"]` | Framework dep | `pytest-*`, `django-*`, `flask-*` |81| **Data processing library** | Classes + functional pipeline | Import API only | Optional: `numpy`, `pandas` | `pydantic`, `marshmallow`, `cerberus` |82| **Mixed / generic** | Combination of above | Varies | Varies | Many real-world packages |8384**Decision Rule:** Ask the user if unclear. A package can combine types (e.g., SDK with a CLI85entry point) — use the primary type for structural decisions and add secondary type patterns on top.8687For implementation patterns of each type, see `references/library-patterns.md`.8889### Package Naming Rules9091- PyPI name: all lowercase, hyphens — `my-python-library`92- Python import name: underscores — `my_python_library`93- Check availability: https://pypi.org/search/ before starting94- Avoid shadowing popular packages (verify `pip install <name>` fails first)9596---9798## 3. Folder Structure Decision99100### Decision Tree101102```103Does the package have 5+ internal modules OR multiple contributors OR complex sub-packages?104├── YES → Use src/ layout105│ Reason: prevents accidental import of uninstalled code during development;106│ separates source from project root files; PyPA-recommended for large projects.107│108├── NO → Is it a single-module, focused package (e.g., one file + helpers)?109│ ├── YES → Use flat layout110│ └── NO (medium complexity) → Use flat layout, migrate to src/ if it grows111│112└── Is it multiple related packages under one namespace (e.g., myorg.http, myorg.db)?113 └── YES → Use namespace/monorepo layout114```115116### Quick Rule Summary117118| Situation | Use |119|---|---|120| New project, unknown future size | `src/` layout (safest default) |121| Single-purpose, 1–4 modules | Flat layout |122| Large library, many contributors | `src/` layout |123| Multiple packages in one repo | Namespace / monorepo |124| Migrating old flat project | Keep flat; migrate to `src/` at next major version |125126---127128## 4. Build Backend Decision129130### Decision Tree131132```133Does the user need version derived automatically from git tags?134├── YES → Use setuptools + setuptools_scm135│ (git tag v1.0.0 → that IS your release workflow)136│137└── NO → Does the user want an all-in-one tool (deps + build + publish)?138 ├── YES → Use poetry (v2+ supports standard [project] table)139 │140 └── NO → Is the package pure Python with no C extensions?141 ├── YES, minimal config preferred → Use flit142 │ (zero config, auto-discovers version from __version__)143 │144 └── YES, modern & fast preferred → Use hatchling145 (zero-config, plugin system, no setup.py needed)146147Does the package have C/Cython/Fortran extensions?148└── YES → MUST use setuptools (only backend with full native extension support)149```150151### Backend Comparison152153| Backend | Version source | Config | C extensions | Best for |154|---|---|---|---|---|155| `setuptools` + `setuptools_scm` | git tags (automatic) | `pyproject.toml` + optional `setup.py` shim | Yes | Projects with git-tag releases; any complexity |156| `hatchling` | manual or plugin | `pyproject.toml` only | No | New pure-Python projects; fast, modern |157| `flit` | `__version__` in `__init__.py` | `pyproject.toml` only | No | Very simple, single-module packages |158| `poetry` | `pyproject.toml` field | `pyproject.toml` only | No | Teams wanting integrated dep management |159160For all four complete `pyproject.toml` templates, see `references/pyproject-toml.md`.161162---163164## 5. PyPA Packaging Flow165166This is the canonical end-to-end flow from source code to user install.167**Every step must be understood before publishing.**168169```1701. SOURCE TREE171 Your code in version control (git)172 └── pyproject.toml describes metadata + build system1731742. BUILD175 python -m build176 └── Produces two artifacts in dist/:177 ├── *.tar.gz → source distribution (sdist)178 └── *.whl → built distribution (wheel) — preferred by pip1791803. VALIDATE181 twine check dist/*182 └── Checks metadata, README rendering, and PyPI compatibility1831844. TEST PUBLISH (first release only)185 twine upload --repository testpypi dist/*186 └── Verify: pip install --index-url https://test.pypi.org/simple/ your-package1871885. PUBLISH189 twine upload dist/* ← manual fallback190 OR GitHub Actions publish.yml ← recommended (Trusted Publishing / OIDC)1911926. USER INSTALL193 pip install your-package194 pip install "your-package[extra]"195```196197### Key PyPA Concepts198199| Concept | What it means |200|---|---|201| **sdist** | Source distribution — your source + metadata; used when no wheel is available |202| **wheel (.whl)** | Pre-built binary — pip extracts directly into site-packages; no build step |203| **PEP 517/518** | Standard build system interface via `pyproject.toml [build-system]` table |204| **PEP 621** | Standard `[project]` table in `pyproject.toml`; all modern backends support it |205| **PEP 639** | `license` key as SPDX string (e.g., `"MIT"`, `"Apache-2.0"`) — not `{text = "MIT"}` |206| **PEP 561** | `py.typed` empty marker file — tells mypy/IDEs this package ships type information |207208For complete CI workflow and publishing setup, see `references/ci-publishing.md`.209210---211212## 6. Project Structure Templates213214### A. src/ Layout (Recommended default for new projects)215216```217your-package/218├── src/219│ └── your_package/220│ ├── __init__.py # Public API: __all__, __version__221│ ├── py.typed # PEP 561 marker — EMPTY FILE222│ ├── core.py # Primary implementation223│ ├── client.py # (API client type) or remove224│ ├── cli.py # (CLI type) click/typer commands, or remove225│ ├── config.py # Settings / configuration dataclass226│ ├── exceptions.py # Custom exception hierarchy227│ ├── models.py # Data classes, Pydantic models, TypedDicts228│ ├── utils.py # Internal helpers (prefix _utils if private)229│ ├── types.py # Shared type aliases and TypeVars230│ └── backends/ # (Plugin pattern) — remove if not needed231│ ├── __init__.py # Protocol / ABC interface definition232│ ├── memory.py # Default zero-dep implementation233│ └── redis.py # Optional heavy implementation234├── tests/235│ ├── __init__.py236│ ├── conftest.py # Shared fixtures237│ ├── unit/238│ │ ├── __init__.py239│ │ ├── test_core.py240│ │ ├── test_config.py241│ │ └── test_models.py242│ ├── integration/243│ │ ├── __init__.py244│ │ └── test_backends.py245│ └── e2e/ # Optional: end-to-end tests246│ └── __init__.py247├── docs/ # Optional: mkdocs or sphinx248├── scripts/249│ └── scaffold.py250├── .github/251│ ├── workflows/252│ │ ├── ci.yml253│ │ └── publish.yml254│ └── ISSUE_TEMPLATE/255│ ├── bug_report.md256│ └── feature_request.md257├── .pre-commit-config.yaml258├── pyproject.toml259├── CHANGELOG.md260├── CONTRIBUTING.md261├── SECURITY.md262├── LICENSE263├── README.md264└── .gitignore265```266267### B. Flat Layout (Small / focused packages)268269```270your-package/271├── your_package/ # ← at root, not inside src/272│ ├── __init__.py273│ ├── py.typed274│ └── ... (same internal structure)275├── tests/276└── ... (same top-level files)277```278279### C. Namespace / Monorepo Layout (Multiple related packages)280281```282your-org/283├── packages/284│ ├── your-org-core/285│ │ ├── src/your_org/core/286│ │ └── pyproject.toml287│ ├── your-org-http/288│ │ ├── src/your_org/http/289│ │ └── pyproject.toml290│ └── your-org-cli/291│ ├── src/your_org/cli/292│ └── pyproject.toml293├── .github/workflows/294└── README.md295```296297Each sub-package has its own `pyproject.toml`. They share the `your_org` namespace via PEP 420298implicit namespace packages (no `__init__.py` in the namespace root).299300### Internal Module Guidelines301302| File | Purpose | When to include |303|---|---|---|304| `__init__.py` | Public API surface; re-exports; `__version__` | Always |305| `py.typed` | PEP 561 typed-package marker (empty) | Always |306| `core.py` | Primary class / main logic | Always |307| `config.py` | Settings dataclass or Pydantic model | When configurable |308| `exceptions.py` | Exception hierarchy (`YourBaseError` → specifics) | Always |309| `models.py` | Data models / DTOs / TypedDicts | When data-heavy |310| `utils.py` | Internal helpers (not part of public API) | As needed |311| `types.py` | Shared `TypeVar`, `TypeAlias`, `Protocol` definitions | When complex typing |312| `cli.py` | CLI entry points (click/typer) | CLI type only |313| `backends/` | Plugin/strategy pattern | When swappable implementations |314| `_compat.py` | Python version compatibility shims | When 3.9–3.13 compat needed |315316---317318## 7. Versioning Strategy319320### PEP 440 — The Standard321322```323Canonical form: N[.N]+[{a|b|rc}N][.postN][.devN]324325Examples:326 1.0.0 Stable release327 1.0.0a1 Alpha (pre-release)328 1.0.0b2 Beta329 1.0.0rc1 Release candidate330 1.0.0.post1 Post-release (e.g., packaging fix only)331 1.0.0.dev1 Development snapshot (not for PyPI)332```333334### Semantic Versioning (recommended)335336```337MAJOR.MINOR.PATCH338339MAJOR: Breaking API change (remove/rename public function/class/arg)340MINOR: New feature, fully backward-compatible341PATCH: Bug fix, no API change342```343344### Dynamic versioning with setuptools_scm (recommended for git-tag workflows)345346```bash347# How it works:348git tag v1.0.0 → installed version = 1.0.0349git tag v1.1.0 → installed version = 1.1.0350(commits after tag) → version = 1.1.0.post1 (suffix stripped for PyPI)351352# In code — NEVER hardcode when using setuptools_scm:353from importlib.metadata import version, PackageNotFoundError354try:355 __version__ = version("your-package")356except PackageNotFoundError:357 __version__ = "0.0.0-dev" # Fallback for uninstalled dev checkouts358```359360Required `pyproject.toml` config:361```toml362[tool.setuptools_scm]363version_scheme = "post-release"364local_scheme = "no-local-version" # Prevents +g<hash> from breaking PyPI uploads365```366367**Critical:** always set `fetch-depth: 0` in every CI checkout step. Without full git history,368`setuptools_scm` cannot find tags and the build version silently falls back to `0.0.0+dev`.369370### Static versioning (flit, hatchling manual, poetry)371372```python373# your_package/__init__.py374__version__ = "1.0.0" # Update this before every release375```376377### Version specifier best practices for dependencies378379```toml380# In [project] dependencies:381"httpx>=0.24" # Minimum version — PREFERRED for libraries382"httpx>=0.24,<1.0" # Upper bound only when a known breaking change exists383"httpx==0.27.0" # Pin exactly ONLY in applications, NOT libraries384385# NEVER do this in a library — it breaks dependency resolution for users:386# "httpx~=0.24.0" # Too tight387# "httpx==0.27.*" # Fragile388```389390### Version bump → release flow391392```bash393# 1. Update CHANGELOG.md — move [Unreleased] entries to [x.y.z] - YYYY-MM-DD394# 2. Commit the changelog395git add CHANGELOG.md396git commit -m "chore: prepare release vX.Y.Z"397# 3. Tag and push — this triggers publish.yml automatically398git tag vX.Y.Z399git push origin main --tags400# 4. Monitor GitHub Actions → verify on https://pypi.org/project/your-package/401```402403For complete pyproject.toml templates for all four backends, see `references/pyproject-toml.md`.404405---406407## Where to Go Next408409After understanding decisions and structure:4104111. **Set up `pyproject.toml`** → `references/pyproject-toml.md`412 All four backend templates (setuptools+scm, hatchling, flit, poetry), full tool configs,413 `py.typed` setup, versioning config.4144152. **Write your library code** → `references/library-patterns.md`416 OOP/SOLID principles, type hints (PEP 484/526/544/561), core class design, factory functions,417 `__init__.py`, plugin/backend pattern, CLI entry point.4184193. **Add tests and code quality** → `references/testing-quality.md`420 `conftest.py`, unit/backend/async tests, parametrize, ruff/mypy/pre-commit setup.4214224. **Set up CI/CD and publish** → `references/ci-publishing.md`423 `ci.yml`, `publish.yml` with Trusted Publishing (OIDC, no API tokens), CHANGELOG format,424 release checklist.4254265. **Polish for community/OSS** → `references/community-docs.md`427 README sections, docstring format, CONTRIBUTING, SECURITY, issue templates, anti-patterns428 table, and master release checklist.4294306. **Design backends, config, transport, CLI** → `references/architecture-patterns.md`431 Backend system (plugin/strategy pattern), Settings dataclass, HTTP transport layer,432 CLI with click/typer, backend injection rules.4334347. **Choose and implement a versioning strategy** → `references/versioning-strategy.md`435 PEP 440 canonical forms, SemVer rules, pre-release identifiers, setuptools_scm deep-dive,436 flit static versioning, decision engine (DEFAULT/BEGINNER/MINIMAL).4374388. **Govern releases and secure the publish pipeline** → `references/release-governance.md`439 Branch strategy, branch protection rules, OIDC Trusted Publishing setup, tag author440 validation in CI, tag format enforcement, full governed `publish.yml`.4414429. **Simplify tooling with Ruff** → `references/tooling-ruff.md`443 Ruff-only setup replacing black/isort/flake8, mypy config, pre-commit hooks,444 asyncio_mode=auto (remove @pytest.mark.asyncio), migration guide.