Metadata-Version: 2.3
Name: pycon25cvosbpapp
Version: 0.2.0
Summary: PyCon Demo app
Author: Carlo van Overbeek
Author-email: Carlo van Overbeek <cvanoverbeek@schubergphilis.com>
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pycon25cvosbp>=0.1.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# pycon25cvosbpapp

PyCon Demo app

## Usage

Legacy: `pip install pycon25cvosbpapp`

Preferred: `uv add pycon25cvosbpapp`

## Developing further

> Development flow as [Paleofuturistic Python](https://github.com/schubergphilis/paleofuturistic_python)

Prerequisite: [uv](https://docs.astral.sh/uv/)

### Setup

- Clone this repository.
- Download additional dependencies: `uv sync --all-extras --dev`
- Optional: validate the setup with `uv run python -m unittest`

### Workflow

- Download dependencies (if you need any): `uv add some_lib_you_need`
- Develop (optional, tinker: `uvx --with-editable . ptpython`)
- QA:
    - Format: `uv run ruff format`
    - Lint: `uv run ruff check`
    - Type check: `uv run mypy`
    - Test: `uv run python -m unittest`
- Build (to validate it works): `uv build`
- Review documentation updates: `uvx --with mkdocstrings[python] mkdocs serve`
- Make a pull request.
