Metadata-Version: 2.4
Name: aitp
Version: 0.0.10
Summary: AITP Python Package
Requires-Python: >=3.10
Requires-Dist: aenum>=3.1.15
Requires-Dist: pydantic>=2.11.1
Requires-Dist: python-dateutil>=2.9.0.post0
Requires-Dist: urllib3>=2.3.0
Description-Content-Type: text/markdown

## AITP Python Package

This package is used to interact with the AITP API.

### Installation

```bash
pip install aitp
```

### Releasing

```bash
git checkout main
git pull
git checkout -b release-aitp-py-vx.x.x
cz bump --files-only --increment patch
uv lock
git add uv.lock CHANGELOG.md pyproject.toml README.md
version=$(grep '^version =' pyproject.toml | cut -d '"' -f2)
git commit -m "chore(release): bump version to $version"
git push

# after merging the PR, create a tag and push it to run a release
version=$(grep '^version =' pyproject.toml | cut -d '"' -f2)
git tag "aitp-py-v$version"
git push origin aitp-py-v$version
```
