Metadata-Version: 2.4
Name: styleprinter
Version: 0.1.0
Summary: A small Python package.
Author: Chantal Shaib
Author-email: chantal.shaib@gmail.com
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# styleprinter

A minimal Python package managed with [Poetry](https://python-poetry.org/).

```python
import styleprinter
```

## Setup

Install Poetry if it is not already available, then install the project:

```bash
poetry install
```

## Common commands

```bash
poetry run pytest   # Run tests
poetry build        # Build wheel and source distribution
poetry publish      # Upload a release to PyPI
```

Before publishing, update the package description and author in
`pyproject.toml`, then configure a PyPI token:

```bash
poetry config pypi-token.pypi YOUR_TOKEN
poetry publish --build
```

Use `poetry version patch`, `poetry version minor`, or `poetry version major`
before publishing a new release.

