A friendly CLI tool to check and publish Python packages to TestPyPI/PyPI
Project description
๐ KHX-Publish-PyPI
โจ 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
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
.whlor.tar.gzfrom 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
- Go to Releases, download the
- 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+
twinefor uploadsbuildfor package buildingkeyringfor secure token storage
๐ Quick Start
-
Install the package
pip install khx-publish-pypi
-
Set up your API tokens
khx-publish-pypi setup-tokens -
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
- TestPyPI Token: Generate at test.pypi.org
- 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.tomlwith project metadata - โ
README.mdfile - โ
LICENSEfile - โ
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__.pyfiles in various locations- Package
__init__.pywith__version__attribute
- Static version in
๐ 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
- Static version from pyproject.toml (100% confidence)
- Dynamic version from build backend configs (90-95% confidence)
- Direct package import attempts (85% confidence)
- File parsing of
__version__.pyfiles (80% confidence) - 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:
- Ensure
__version__is properly exported in__init__.py:from .__version__ import __version__ __all__ = ["__version__"]
- Check dynamic version configuration in
pyproject.toml - Verify version file locations match expected patterns
- Use enhanced diagnostics:
khx-publish-pypi checkshows 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:
- Fork the repository
- Create a feature branch
git checkout -b feature/amazing-feature
- Make your changes
- Run tests
python -m pytest
- 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
- ๐ Enhanced Version Detection Guide: Complete guide to the new version detection system
- ๐งช Test Examples: Comprehensive test suite demonstrating all capabilities
- ๐ป API Usage Examples: Programmatic usage examples
๐ Support
- ๐ง Email: abueltayef.khader@gmail.com
- ๐ Issues: GitHub Issues
- ๐ Documentation: GitHub Wiki
- ๐ฌ Discussions: GitHub Discussions
Made with โค๏ธ by ABUELTAYEF Khader
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
071cba17c4ce0693522efaf0db709f0d8bfbe5f748cfa8458f446d64c12b9a1c
|
|
| MD5 |
4c2716919b5933614d39f8db261035ea
|
|
| BLAKE2b-256 |
ea04f17b923c162e27fc0b9dab79689db8c7c019c52dcb17f9fae25f788141a2
|
File details
Details for the file khx_publish_pypi-0.1.12-py3-none-any.whl.
File metadata
- Download URL: khx_publish_pypi-0.1.12-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ee2c3156f34deb58d6dd2f4bdddefa2b05eaa60dac0a6eaababfb936a19f683
|
|
| MD5 |
8ef4e481b4115545787cf919d2348c04
|
|
| BLAKE2b-256 |
6ea3668cfc84f5fe7c283040082127370bbf8aa1eded0de5f8bfd414a1abfed7
|