Tags

Packaging

Apr 24, 2022 Python Engineering 28 min read

Python Engineering (7): Packaging — From pip install to PyPI

Package your Python code for distribution via pip, publish to PyPI, create Docker images, and manage versioning. The complete guide from local project to installable package.

Apr 12, 2022 Python Engineering 32 min read

Python Engineering (2): Project Structure — From Script to Package

Learn how to organize Python code into proper packages with imports, entry points, and CLI tools. Build a real command-line application from scratch.