Metadata-Version: 2.4
Name: pycatalyst
Version: 0.0.1
Summary: A modern Python package template — customize this description.
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/your-org/pycatalyst
Project-URL: Documentation, https://github.com/your-org/pycatalyst#readme
Project-URL: Repository, https://github.com/your-org/pycatalyst
Project-URL: Issues, https://github.com/your-org/pycatalyst/issues
Keywords: python,template,catalyst
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: ruff>=0.4.0; extra == "dev"
Requires-Dist: mypy>=1.8.0; extra == "dev"
Requires-Dist: build>=1.0.0; extra == "dev"
Requires-Dist: twine>=5.0.0; extra == "dev"
Dynamic: license-file

# pycatalyst

A modern Python package template. Replace this with your package description.

## Installation

```bash
pip install pycatalyst
```

From source (editable):

```bash
git clone https://github.com/your-org/pycatalyst
cd pycatalyst
pip install -e ".[dev]"
```

## Quick Start

```python
import pycatalyst

print(pycatalyst.__version__)
```

## Development

- **Lint & format:** `ruff check . && ruff format .`
- **Type check:** `mypy src/`
- **Tests:** `pytest`
- **Coverage:** `pytest --cov=pycatalyst --cov-report=term-missing`

## Publishing

1. Bump version in `pyproject.toml` and `CHANGELOG.md`.
2. Create a release tag: `git tag v0.1.0 && git push origin v0.1.0`.
3. The GitHub Action uses [PyPI Trusted Publishing](https://docs.pypi.org/trusted-publishers/); configure the publisher on PyPI for this repo, then the workflow will publish on tag push.

## License

MIT
