# Py Packaging Pro

> Modern standards for professional Python project configuration, dependency management, and distribution. Use when this capability is needed.

- Skill: `tomevault-io/py-packaging-pro` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/py-packaging-pro`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/py-packaging-pro/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/py-packaging-pro

---


# Python Packaging Pro

Modern Python packaging revolves around `pyproject.toml`. This skill ensures your projects are reproducible and ready for distribution.

## The Modern Stack
- **Build System**: Use `poetry` or `uv` for dependency management.
- **Metadata**: Configure everything in `pyproject.toml`.
- **Environment**: Use strictly pinned lock files (`poetry.lock`).

## Project Structure
```text
project/
├── pyproject.toml
├── README.md
├── src/
│   └── project_name/
├── tests/
└── .github/workflows/  # CI/CD for testing and publishing
```

## Best Practices
- **Explicit Dependencies**: Separate `main` and `dev` dependencies.
- **Type Checking**: Include `mypy` in your CI pipeline.
- **versioning**: Follow Semantic Versioning (SemVer).

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/jcorpac) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-15 -->

