Skip to main content

A friendly CLI tool to check and publish Python packages to TestPyPI/PyPI

Project description

๐Ÿš€ KHX-Publish-PyPI

PyPI version Python 3.9+ License: MIT Build Status Code Coverage

โœจ A beautiful, intelligent CLI tool to streamline Python package publishing to PyPI and TestPyPI

KHX-Publish-PyPI is an interactive command-line interface that simplifies the entire process of preparing, building, and publishing Python packages. With enhanced version detection supporting all modern build backends, rich visual feedback, intelligent error handling, and secure token management, it makes package publishing as smooth as a breeze.

๐ŸŽฏ NEW: Enhanced Version Detection System - Works with ANY modern Python package configuration including setuptools, scikit-build-core, setuptools-scm, flit, hatchling, and more!

๐Ÿ†• What's New in Latest Version

๐Ÿš€ Enhanced Version Detection System

  • โœ… Universal compatibility with all modern Python build backends
  • โœ… Intelligent 5-stage fallback detection process
  • โœ… Rich diagnostics showing detection method, source, and confidence
  • โœ… Programmatic API for advanced integration
  • โœ… Comprehensive support for dynamic versioning configurations

๐Ÿ“Š Before vs After

Before: Limited to basic setuptools configurations
After: Works with setuptools, scikit-build-core, setuptools-scm, flit, hatchling, and more!

Before: ๐Ÿ”ข Version .......................... โœ… (0.1.11)
After: ๐Ÿ”ข Version .......................... โœ… (v0.1.12 (setuptools_dynamic_attr) dynamic backend:setuptools)

๐ŸŽฏ Enhanced Output Example

๐Ÿ”ข Version .......................... โœ… (v0.1.12 (setuptools_dynamic_attr) dynamic backend:setuptools)

This shows you:

  • Version: 0.1.12
  • Detection Method: setuptools_dynamic_attr
  • Type: dynamic versioning
  • Build Backend: setuptools

๐ŸŒŸ Features

  • ๐ŸŽจ Beautiful Interface: Rich, colorful output with progress bars and interactive prompts
  • ๐Ÿ” Smart Pre-checks: Validates your package structure, version, and configuration before publishing
  • ๏ฟฝ Enhanced Version Detection: Comprehensive support for all modern Python packaging approaches
    • โœ… Static versions in pyproject.toml
    • โœ… Dynamic versions with setuptools, scikit-build-core, setuptools-scm, flit, hatchling
    • โœ… Intelligent fallback system with 5-stage detection process
    • โœ… Rich diagnostics showing detection method, source, and confidence scoring
  • ๏ฟฝ๐Ÿ” Secure Token Management: Stores API tokens securely using your system's keyring
  • ๐Ÿ“ฆ One-Command Publishing: Complete workflow from checks to upload in a single command
  • ๐Ÿงช TestPyPI Support: Publish to TestPyPI first for safe testing
  • ๐Ÿ“ˆ Version Management: Automatic version bumping with semantic versioning
  • ๐Ÿ› ๏ธ Error Intelligence: Provides specific suggestions when uploads fail
  • ๐Ÿš€ CI/CD Ready: Perfect for automated publishing pipelines

๐Ÿ“ธ Screenshots

๐Ÿ› ๏ธ Installation

From PyPI (Recommended)

pip install khx-publish-pypi

Installation Gif

Check the latest version:

khx-publish-pypi --version

From GitHub (Release or main)

  • Install from a tagged GitHub Release asset (requires download first):
    • Go to Releases, download the .whl or .tar.gz from assets, then:
      pip install path/to/khx_publish_pypi-<version>-py3-none-any.whl
      # or
      pip install path/to/khx_publish_pypi-<version>.tar.gz
      
  • Or install directly from the repo using pipโ€™s VCS support:
    # specific tag
    pip install git+https://github.com/Khader-X/khx-publish-pypi.git@vX.Y.Z#egg=khx_publish_pypi
    # latest on default branch
    pip install git+https://github.com/Khader-X/khx-publish-pypi.git@main#egg=khx_publish_pypi
    

From Source (Development)

git clone https://github.com/Khader-X/khx-publish-pypi.git
cd khx-publish-pypi
pip install -e .

Requirements

  • Python 3.9+
  • twine for uploads
  • build for package building
  • keyring for secure token storage

๐Ÿš€ Quick Start

  1. Install the package

    pip install khx-publish-pypi
    
  2. Set up your API tokens

    khx-publish-pypi setup-tokens
    
  3. Publish your package

    khx-publish-pypi run
    

That's it! The guided workflow will handle everything else.

๐Ÿ“– Usage

Interactive Publishing (Recommended)

khx-publish-pypi run

This command provides a complete guided experience:

  • โœ… Runs pre-publish checks with enhanced version detection
  • ๐Ÿ”‘ Manages API token configuration
  • ๐Ÿ“ˆ Offers version bumping options
  • ๐Ÿ—๏ธ Builds your package distributions
  • ๐Ÿ“ค Publishes to TestPyPI and/or PyPI

Individual Commands

# Run pre-publish checks with enhanced version detection
khx-publish-pypi check

# Bump version
khx-publish-pypi bump patch

# Publish to TestPyPI only
khx-publish-pypi publish-test

# Publish to PyPI only
khx-publish-pypi publish-prod

Programmatic API (New!)

KHX-Publish-PyPI now exposes a powerful programmatic API for version detection:

from khx_publish_pypi import detect_package_version, get_package_version
from pathlib import Path

# Simple version detection (legacy interface)
version = get_package_version(Path("."))
print(f"Version: {version}")

# Enhanced detection with full diagnostics
result = detect_package_version(Path("."))
if result.version_info:
    info = result.version_info
    print(f"Version: {info.version}")
    print(f"Method: {info.method}")
    print(f"Backend: {info.build_backend}")
    print(f"Confidence: {info.confidence}%")
    print(f"Source: {info.source}")
else:
    print(f"Failed: {', '.join(result.attempts)}")

๐Ÿ“š CLI Commands

Command Description
khx-publish-pypi --version Show CLI version
khx-publish-pypi check Run interactive pre-publish checks
khx-publish-pypi bump [patch|minor|major] Bump package version
khx-publish-pypi setup-tokens Configure API tokens interactively
khx-publish-pypi update-tokens Update existing tokens
khx-publish-pypi run Complete guided publishing workflow
khx-publish-pypi publish-test Publish to TestPyPI
khx-publish-pypi publish-prod Publish to PyPI

Command Options

Token Setup

# Interactive setup
khx-publish-pypi setup-tokens

# Non-interactive setup
khx-publish-pypi setup-tokens --test-token YOUR_TEST_TOKEN --prod-token YOUR_PROD_TOKEN

Version Bumping

khx-publish-pypi bump patch  # 1.0.0 โ†’ 1.0.1
khx-publish-pypi bump minor  # 1.0.1 โ†’ 1.1.0
khx-publish-pypi bump major  # 1.1.0 โ†’ 2.0.0

โš™๏ธ Configuration

API Tokens

KHX-Publish-PyPI securely stores your PyPI API tokens using your system's keyring:

  • TestPyPI: Stored as khx-publish-testpypi
  • PyPI: Stored as khx-publish-pypi

Getting API Tokens

  1. TestPyPI Token: Generate at test.pypi.org
  2. PyPI Token: Generate at pypi.org

Environment Variables (Alternative)

You can also provide tokens via environment variables:

export TESTPYPI_TOKEN=your_test_token
export PYPI_TOKEN=your_prod_token

Package Requirements

Your Python package must have:

  • โœ… pyproject.toml with project metadata
  • โœ… README.md file
  • โœ… LICENSE file
  • โœ… Package directory in src/ or root
  • โœ… Version defined anywhere! Our enhanced detection supports:
    • Static version in pyproject.toml
    • Dynamic versions with setuptools, scikit-build-core, setuptools-scm, flit, hatchling
    • __version__.py files in various locations
    • Package __init__.py with __version__ attribute

๐Ÿ” Enhanced Version Detection

KHX-Publish-PyPI now features a comprehensive version detection system that handles all modern Python packaging approaches:

Supported Configurations

Build Backend Configuration Example Detection Result
Static version = "1.0.0" in pyproject.toml โœ… v1.0.0 (static)
Setuptools {attr = "package.__version__"} โœ… v1.0.0 (setuptools_dynamic_attr) dynamic backend:setuptools
Scikit-build-core provider = "scikit_build_core.metadata.regex" โœ… v1.0.0 (scikit_build_regex) dynamic backend:scikit-build-core
Setuptools-SCM [tool.setuptools_scm] โœ… v1.0.0 (setuptools_scm) dynamic backend:setuptools-scm
Flit [tool.flit.module] โœ… v1.0.0 (flit_module) dynamic backend:flit
Hatchling source = "regex" โœ… v1.0.0 (hatchling_regex) dynamic backend:hatchling

Intelligent Detection Process

  1. Static version from pyproject.toml (100% confidence)
  2. Dynamic version from build backend configs (90-95% confidence)
  3. Direct package import attempts (85% confidence)
  4. File parsing of __version__.py files (80% confidence)
  5. Setuptools-scm fallback for git-based projects (70% confidence)

Rich Diagnostics

When version detection succeeds, you'll see detailed information:

๐Ÿ”ข Version .......................... โœ… (v0.1.11 (setuptools_dynamic_attr) dynamic backend:setuptools)

When it fails, you get helpful diagnostics:

๐Ÿ”ข Version .......................... โŒ Failed to detect version. Tried: static_pyproject_version, dynamic_pyproject_version, import_package_version. Errors: Import failed: No module named 'missing_package'

๐Ÿ“– Read the Complete Enhanced Version Detection Guide

๐Ÿ”ง Troubleshooting

Common Issues

โŒ Version Detection Failed

Cause: Package version not found or improperly configured Solutions:

  1. Ensure __version__ is properly exported in __init__.py:
    from .__version__ import __version__
    __all__ = ["__version__"]
    
  2. Check dynamic version configuration in pyproject.toml
  3. Verify version file locations match expected patterns
  4. Use enhanced diagnostics: khx-publish-pypi check shows detailed detection attempts

โŒ Upload Fails with 400 Error

Cause: Package version already exists on PyPI Solution: Bump the version

khx-publish-pypi bump patch

โŒ Authentication Failed (403)

Cause: Invalid or expired API token Solution: Reconfigure tokens

khx-publish-pypi setup-tokens

โŒ Build Fails

Cause: Missing build dependencies or invalid pyproject.toml Solution: Install build tools and validate configuration

pip install build twine
python -m build --help

โŒ Token Storage Issues

Cause: Keyring not available or corrupted Solution: Use environment variables or reinstall keyring

pip uninstall keyring
pip install keyring

Debug Mode

Enable verbose output for troubleshooting:

khx-publish-pypi run --verbose

๐Ÿค Contributing

We welcome contributions! Here's how to get started:

  1. Fork the repository
  2. Create a feature branch
    git checkout -b feature/amazing-feature
    
  3. Make your changes
  4. Run tests
    python -m pytest
    
  5. Submit a pull request

Development Setup

git clone https://github.com/Khader-X/khx-publish-pypi.git
cd khx-publish-pypi
pip install -e ".[dev]"

Code Style

  • Follow PEP 8
  • Use type hints
  • Write docstrings for all functions
  • Add tests for new features

๐Ÿ“Š CI/CD Integration

KHX-Publish-PyPI works great with CI/CD pipelines:

# GitHub Actions example
- name: Publish to PyPI
  run: |
    khx-publish-pypi setup-tokens --test-token ${{ secrets.TEST_PYPI_TOKEN }} --prod-token ${{ secrets.PYPI_TOKEN }}
    khx-publish-pypi publish-prod

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Built with Click for CLI magic
  • Beautiful output powered by Rich
  • Secure token storage via Keyring
  • Package building with Build
  • Uploads handled by Twine
  • Enhanced version detection supports modern packaging standards

๐Ÿ“š Documentation

๐Ÿ“ž Support


Made with โค๏ธ by ABUELTAYEF Khader

โญ Star this repo โ€ข ๐Ÿ“ฆ View on PyPI โ€ข ๐Ÿ“ Blog

Project details


Download files

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

Source Distribution

khx_publish_pypi-0.1.12.tar.gz (32.5 kB view details)

Uploaded Source

Built Distribution

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

khx_publish_pypi-0.1.12-py3-none-any.whl (29.0 kB view details)

Uploaded Python 3

File details

Details for the file khx_publish_pypi-0.1.12.tar.gz.

File metadata

  • Download URL: khx_publish_pypi-0.1.12.tar.gz
  • Upload date:
  • Size: 32.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for khx_publish_pypi-0.1.12.tar.gz
Algorithm Hash digest
SHA256 071cba17c4ce0693522efaf0db709f0d8bfbe5f748cfa8458f446d64c12b9a1c
MD5 4c2716919b5933614d39f8db261035ea
BLAKE2b-256 ea04f17b923c162e27fc0b9dab79689db8c7c019c52dcb17f9fae25f788141a2

See more details on using hashes here.

File details

Details for the file khx_publish_pypi-0.1.12-py3-none-any.whl.

File metadata

File hashes

Hashes for khx_publish_pypi-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 8ee2c3156f34deb58d6dd2f4bdddefa2b05eaa60dac0a6eaababfb936a19f683
MD5 8ef4e481b4115545787cf919d2348c04
BLAKE2b-256 6ea3668cfc84f5fe7c283040082127370bbf8aa1eded0de5f8bfd414a1abfed7

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