Skip to main content

Modern Python Package Deployment Tool

Project description

pkg-deploy

Modern Python Package Deployment Tool

What is it

pkg-deploy is a comprehensive Python package deployment tool that streamlines the process of building, versioning, and publishing Python packages to PyPI and private repositories. It supports both standard and Cython builds, automatic version management, and seamless Git integration.

Features

  • Automatic Version Management: Support for semantic versioning with patch, minor, major, alpha, beta, and release candidate bumps
  • Flexible Build System: Standard Python builds and optimized Cython compilation
  • Multiple Repository Support: Deploy to PyPI, private Nexus repositories, and custom package indexes
  • Git Integration: Automatic tagging and commit management
  • Environment Detection: Native support for both pip and uv virtual environments
  • Dry Run Mode: Test deployments without making actual changes
  • Interactive Authentication: Secure credential input with API token support
  • Automatic Cleanup: Clean removal of build artifacts after deployment

Installation

From PyPI

pip install pkg-deploy

Quick Start

Basic Usage

After installing pkg-deploy , navigate to your project directory (the folder containing your pyproject.toml ) and use the pkg-deploy command directly. Example project structure:

my-package/
├── src/
│   └── my_package/
│       ├── __init__.py
│       └── main.py
├── pyproject.toml
└── README.md

Running the Deployment

Use the pkg-deploy command with your desired arguments:

# Deploy with patch version bump to PyPI
pkg-deploy --repository-name pypi --version-type patch

# Deploy to private repository with minor version bump
pkg-deploy --repository-url https://nexus.example.com/repository/pypi-internal/ \
           --username admin --password secret --version-type minor

# Dry run to test configuration
pkg-deploy --repository-name pypi --version-type patch --dry-run

Configuration

pyproject.toml

Ensure your pyproject.toml includes the required project metadata:

[build-system]
requires = ["setuptools>=70"]
build-backend = "setuptools.build_meta"

[project]
name = "your-package-name"
version = "1.0.0"
description = "Your package description"
requires-python = ">=3.10"
authors = [
    { name = "Your Name", email = "your.email@example.com" },
]
readme = "README.md"
dependencies = [
    "dependency1",
    "dependency2",
]

[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false

[tool.setuptools.packages.find]
where = ["src"]

# Optional: Version bump configuration, other wise will only bump version in pyproject.toml
[[tool.bumpversion.file]]
filename = "src/your_package/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'

.pypirc Configuration

For repository authentication, create a .pypirc file in your user home directory:

  • Unix/macOS: ~/.pypirc
  • Windows: C:\Users\username\.pypirc
[distutils]
index-servers =
    pypi
    private-repo

[pypi]
repository = https://upload.pypi.org/legacy/
username = __token__
password = pypi-your-api-token-here

[private-repo]
repository = https://nexus.example.com/repository/pypi-internal/
username = your-username
password = your-password

Usage Examples

Version Management

# Patch version bump (1.0.0 -> 1.0.1)
pkg-deploy --repository-name pypi --version-type patch

# Minor version bump (1.0.1 -> 1.1.0)
pkg-deploy --repository-name pypi --version-type minor

# Major version bump (1.1.0 -> 2.0.0)
pkg-deploy --repository-name pypi --version-type major

# Use specific version
pkg-deploy --repository-name pypi --new-version 2.1.0

# Pre-release versions
pkg-deploy --repository-name pypi --version-type alpha  # 1.0.0a1
pkg-deploy --repository-name pypi --version-type beta   # 1.0.0b1
pkg-deploy --repository-name pypi --version-type rc     # 1.0.0rc1

Cython Builds

# Build with Cython optimization
pkg-deploy --repository-name pypi --version-type patch --cython

# Cython build for private repository
pkg-deploy --repository-url https://nexus.example.com/repository/pypi-internal/ \
           --username user_name --password secret --cython

Cross-Platform Multiple Version Builds with cibuildwheel

pkg-deploy supports cibuildwheel for building wheels across multiple Python versions and platforms as specified in your pyproject.toml configuration.

Benefits

  • Cython Integration: Build wheels for all specified versions in one run
  • Multi-Platform Support: Automatically builds wheels for Linux, macOS, and Windows
  • Multiple Python Versions: Builds for all Python versions specified in configuration
  • Binary Compatibility: Creates optimized binary wheels with proper platform tags

Requirements

  • Docker (Linux only): Docker must be installed and running when building on Linux systems
  • cibuildwheel: Automatically installed as a build dependency
  • Sufficient disk space: Cross-platform builds require more storage

Configuration

Add cibuildwheel configuration to your pyproject.toml (Optional):

[tool.cibuildwheel]
# Specify which Python versions to build for
build = "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
before-build = "pip install Cython"

[tool.cibuildwheel.linux]
# Use manylinux images for better compatibility
before-all = "yum install -y gcc || apt-get update && apt-get install -y gcc"

[tool.cibuildwheel.macos]
# Ensure Cython is available for macOS builds
before-build = "pip install Cython"

[tool.cibuildwheel.windows]
# Ensure Cython is available for Windows builds
before-build = "pip install Cython"

Usage Examples

# Cross-platform Cython build with cibuildwheel
pkg-deploy --repository-name pypi --version-type patch --cython --cibuildwheel

# Deploy to private repository with cross-platform builds
pkg-deploy --repository-url https://nexus.example.com/repository/pypi-internal/ \
           --username admin --password secret --cython --cibuildwheel

# Dry run to test cross-platform build configuration
pkg-deploy --repository-name pypi --cython --cibuildwheel --dry-run

Limitations

  • Build Time: Cross-platform builds take significantly longer than single-platform builds
  • Docker Dependency: Linux builds require Docker to be installed and running
  • Resource Usage: Requires more CPU, memory, and disk space during build process
  • Platform Restrictions: Some platform-specific dependencies may not be available across all targets

Advanced Options

# Custom project directory
pkg-deploy --project-dir /path/to/project --repository-name pypi

# Skip Git operations
pkg-deploy --repository-name pypi --skip-git-push

# Verbose logging
pkg-deploy --repository-name pypi --verbose

# Dry run with verbose output
pkg-deploy --repository-name pypi --dry-run --verbose

Command Line Interface

Arguments

  • --project-dir: Project directory (default: current directory)
  • --version-type, -vt: Version bump type: patch, minor, major, alpha, beta, or rc
  • --new-version, -v: Specify exact version number (overrides version-type)
  • --cython, -c: Enable Cython compilation for performance
  • --cibuildwheel: Use cibuildwheel for cross-platform wheel building (requires Docker on Linux)
  • --repository-name, -rn: Repository name from .pypirc configuration (e.g., 'pypi', 'testpypi')
  • --repository-url, -rl: Repository upload URL (prompts for username/password if not in .pypirc)
  • --username, -u: Authentication username (optional if configured in .pypirc)
  • --password, -p: Authentication password/token (optional if configured in .pypirc)
  • --skip-git-push: Skip pushing version changes and tags to Git repository
  • --skip-git-status-check: Skip Git status validation before deployment
  • --dry-run: Simulate deployment without making actual changes
  • --verbose, -V: Enable detailed logging output

Environment Support

UV Virtual Environments

pkg-deploy automatically detects and supports UV-managed virtual environments:

Security Considerations

API Tokens (Recommended)

For PyPI, use API tokens instead of passwords:

  1. Generate token at https://pypi.org/manage/account/token/
  2. Use __token__ as username
  3. Use the generated token as password

Credential Storage

  • Store credentials in .pypirc for reusability
  • Enable interactive mode for secure input

Troubleshooting

Common Issues

Git Repository Not Clean

Error: Git repo is NOT clean

Solution: Commit or stash your changes before deployment or use --skip-git-push.

Missing Dependencies

Error: Missing required packages: build, twine

Solution: Install missing packages with pip install build twine.

Cython Build Conflicts

Error: Cannot build Cython code: setup.py already exists

Solution: Backup existing setup.py or migrate configuration to pyproject.toml.

Docker Not Available (Linux)

Error: Docker is required for cibuildwheel on Linux

Solution: Install and start Docker service, or use --cython without --cibuildwheel for local builds only.

cibuildwheel Build Failures

Error: cibuildwheel build failed

Solution: Check Docker is running (Linux), verify pyproject.toml cibuildwheel configuration, and ensure sufficient disk space.

Authentication Failures

Error: 403 Forbidden

Solution: Verify credentials, use API tokens for PyPI, or enable interactive mode.

Debug Mode

Enable verbose logging for detailed troubleshooting:

pkg-deploy --repository-name pypi --verbose --dry-run

Noticed that the clibuildwheel needs docker service in Linux to build different version

pkg-deploy - Streamlining Python package deployment since 2025.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pkg_deploy-1.0.8-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file pkg_deploy-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: pkg_deploy-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 17.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for pkg_deploy-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 bd76ca05bcdae3c766a9a7c301d2a66cb251d8005816d93afd055b6ecc03d5f0
MD5 af0c0931697cbab7668e3a90d7850160
BLAKE2b-256 34c9d18da366444ea99a15c6bf7764bea9a36a6676d1d85acc17065b206f4f72

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page