Last updated:
0 purchases
pep440utility 0.1.0
PEP440 Versioning Helper
The pep440 Python package provides utilities to help manage versioning of projects based on the PEP 440 versioning scheme.
Features
Parses and validates versions based on PEP 440.
Determines the next version based on the current version and desired release type.
Installation
To install pep440, simply use Poetry:
poetry add pep440
Alternatively, you can install it from PyPI using pip:
pip install pep440
Usage
Here's a simple usage example:
from pep440 import get_next_pep440_version
current_version = "0.1.0.dev1"
release_type = "a"
next_version = get_next_pep440_version(current_version, release_type)
print(next_version) # Expected: 0.1.0a1
Development
Clone the repository:
git clone https://github.com/yourusername/pep440.git
Navigate to the project directory and install dependencies:
cd pep440
poetry install
Run tests (after you've added them):
poetry run pytest
Contribution
Contributions are welcome! Please submit pull requests or open issues to discuss potential changes or additions.
License
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.