Metadata-Version: 2.4
Name: simple-semver-toml
Version: 0.1.0
Summary: A simple CLI tool to bump versions into toml project files
Author-email: Marc DeXeT <marc.dexet@ias.u-psud.fr>
License-Expression: MIT
Keywords: bump,cli,semver
Requires-Python: >=3.10
Requires-Dist: click>=8.1.8
Requires-Dist: python-box>=7.3.2
Requires-Dist: questionary>=2.1.0
Requires-Dist: semver>=3.0.4
Requires-Dist: toml>=0.10.2
Description-Content-Type: text/markdown

# simple-semver-toml

A simple CLI tool to bump versions in a `pyproject.toml` project using semantic versioning.

## Installation

You can install `simple-semver-toml` using pip:

```sh
pip install simple-semver-toml
```

## Usage

To bump the version in your project, use the following command:

```sh
simple-semver-toml bump --path /path/to/your/project major
```

To bump the version in your project with minor version, use the following command:

```sh
simple-semver-toml bump --path /path/to/your/project minor -y -q
```

To bump the version in your project with patch version, use the following command:

```sh
simple-semver-toml bump --path /path/to/your/project patch -d
```

## Testing

To run tests, use the following command:

```sh
pytest
```

## License
This project is licensed under the MIT License.

