Poetry Packaging
Master Python package management with Poetry, dependency resolution, publishing, and project structure
What this skill does
# Poetry Packaging ## Overview Master modern Python dependency management and packaging with Poetry. Learn to create, manage, and publish professional Python packages with reproducible builds and clean dependency resolution. ## Learning Objectives - Manage project dependencies with Poetry - Create and publish Python packages - Handle version constraints and dependency resolution - Structure projects following best practices - Implement semantic versioning - Automate packaging workflows ## Core Topics ### 1. Poetry Basics - Installing Poetry - Creating new projects - Managing dependencies - Virtual environment management - Lock files and reproducibility - Poetry commands and workflow **Code Example:** ```bash # Install Poetry curl -sSL https://install.python-poetry.org | python3 - # Create new project poetry new my-awesome-package cd my-awesome-package # Project structure created: # my-awesome-package/ # ├── my_awesome_package/ # │ └── __init__.py # ├── tests/ # │ └── __init__.py # ├── pyproject.toml # └── README.md # Add dependencies poetry add requests poetry add pandas numpy poetry add --group dev pytest black mypy # Install dependencies poetry install # Run commands in virtual environment poetry run python main.py poetry run pytest # Update dependencies poetry update # Show dependency tree poetry show --tree # Export to requirements.txt poetry export -f requirements.txt --output requirements.txt ``` ### 2. pyproject.toml Configuration - Project metadata - Dependency specification - Version constraints - Development dependencies - Build system configuration - Scripts and entry points **Code Example:** ```toml # pyproject.toml [tool.poetry] name = "my-awesome-package" version = "0.1.0" description = "An awesome Python package" authors = ["Your Name <[email protected]>"] license = "MIT" readme = "README.md" homepage = "https://github.com/username/my-awesome-package" repository = "https://github.com/username/my-awesome-package" documentation = "https://my-awesome-package.readthedocs.io" keywords = ["awesome", "package", "python"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] [tool.poetry.dependencies] python = "^3.9" requests = "^2.28.0" pandas = "^2.0.0" click = "^8.1.0" [tool.poetry.group.dev.dependencies] pytest = "^7.0.0" pytest-cov = "^4.0.0" black = "^23.0.0" mypy = "^1.0.0" ruff = "^0.1.0" [tool.poetry.scripts] my-cli = "my_awesome_package.cli:main" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" # Version constraints examples: # ^2.0.0 = >=2.0.0 <3.0.0 (caret) # ~2.0.0 = >=2.0.0 <2.1.0 (tilde) # 2.0.* = >=2.0.0 <2.1.0 (wildcard) # >=2.0.0 = 2.0.0 or higher (range) ``` ### 3. Package Structure & Publishing - Package layout best practices - Versioning with semantic versioning - Building distributions (sdist, wheel) - Publishing to PyPI/TestPyPI - Package metadata - Documentation generation **Code Example:** ```python # Recommended package structure my-awesome-package/ ├── my_awesome_package/ │ ├── __init__.py # Package initialization │ ├── core.py # Core functionality │ ├── utils.py # Utility functions │ ├── cli.py # Command-line interface │ └── py.typed # Type hints marker ├── tests/ │ ├── __init__.py │ ├── test_core.py │ └── test_utils.py ├── docs/ │ ├── index.md │ └── api.md ├── examples/ │ └── basic_usage.py ├── pyproject.toml ├── README.md ├── LICENSE ├── CHANGELOG.md └── .gitignore # my_awesome_package/__init__.py """ My Awesome Package A comprehensive package for doing awesome things. """ __version__ = "0.1.0" __author__ = "Your Name" __email__ = "[email protected]" from .core import main_function from .utils import helper_function __all__ = ["main_function", "helper_function"] # Publishing workflow # 1. Update version in pyproject.toml poetry version patch # 0.1.0 -> 0.1.1 poetry version minor # 0.1.1 -> 0.2.0 poetry version major # 0.2.0 -> 1.0.0 # 2. Build package poetry build # Creates dist/my_awesome_package-0.1.0.tar.gz # Creates dist/my_awesome_package-0.1.0-py3-none-any.whl # 3. Publish to TestPyPI first poetry config repositories.testpypi https://test.pypi.org/legacy/ poetry publish -r testpypi # 4. Test installation pip install --index-url https://test.pypi.org/simple/ my-awesome-package # 5. Publish to PyPI poetry publish # 6. Create git tag git tag v0.1.0 git push origin v0.1.0 ``` ### 4. Advanced Features - Monorepo management - Plugin systems - Custom build scripts - Private package repositories - CI/CD integration - Dependency groups **Code Example:** ```toml # Advanced pyproject.toml configuration [tool.poetry] name = "advanced-package" version = "1.0.0" description = "Advanced packaging example" # Include/exclude files include = ["my_package/data/*.json"] exclude = ["my_package/tests/*"] [tool.poetry.dependencies] python = "^3.9" # Optional dependencies (extras) psycopg2 = { version = "^2.9", optional = true } mysqlclient = { version = "^2.1", optional = true } [tool.poetry.extras] postgresql = ["psycopg2"] mysql = ["mysqlclient"] all = ["psycopg2", "mysqlclient"] # Multiple dependency groups [tool.poetry.group.test.dependencies] pytest = "^7.0.0" pytest-cov = "^4.0.0" [tool.poetry.group.docs.dependencies] sphinx = "^5.0.0" sphinx-rtd-theme = "^1.0.0" [tool.poetry.group.lint.dependencies] black = "^23.0.0" ruff = "^0.1.0" mypy = "^1.0.0" # Platform-specific dependencies [tool.poetry.dependencies.pywin32] version = "^305" platform = "win32" # Plugins [tool.poetry.plugins."my_package.plugins"] plugin1 = "my_package.plugins:plugin1" # CI/CD with GitHub Actions # .github/workflows/publish.yml name: Publish to PyPI on: release: types: [published] jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.11' - name: Install Poetry run: curl -sSL https://install.python-poetry.org | python3 - - name: Build and publish env: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} run: | poetry build poetry publish ``` ## Hands-On Practice ### Project 1: CLI Tool Package Create a command-line tool and publish to PyPI. **Requirements:** - Build CLI with Click/Typer - Add multiple subcommands - Include configuration file support - Write comprehensive tests - Generate documentation - Publish to PyPI **Key Skills:** Poetry, CLI development, packaging ### Project 2: Library Package Develop a reusable library with clean API. **Requirements:** - Design public API - Type hints throughout - Comprehensive docstrings - Unit and integration tests - API documentation - Versioning strategy **Key Skills:** API design, documentation, testing ### Project 3: Plugin System Create package with plugin architecture. **Requirements:** - Plugin discovery mechanism - Entry points configuration - Plugin API specification - Example plugins - Plugin documentation - Distribution strategy **Key Skills:** Advanced packaging, architecture ## Assessment Criteria - [ ] Create projects with Poetry - [ ] Manage dependencies effectively - [ ] Understand version constraints - [ ] Build and publish packages - [ ] Structure projects professionally - [ ] Write clear package metadata - [ ] Implement semantic versioning ## Resources ### Official Documentation - [Poetry Docs](https://python-poetry.org/docs/) - Official documentation - [PyPI](https://pypi.org/) - Python Package Index - [Packaging Guide](https://packaging.python.org/) - Python packaging authority ### Learning Platforms - [Python Packa
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.