Metadata-Version: 2.3
Name: clisechubman
Version: 0.4.2
Summary: Development flow as Paleofuturistic Python
Author: Paleofuturistic Python
Author-email: Paleofuturistic Python <me@here.now>
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pyyaml==6.0.3
Requires-Dist: sechubman==0.2.0
Requires-Dist: typer==0.20.0
Requires-Dist: aws-lambda-powertools==3.23.0 ; extra == 'lambda'
Requires-Python: >=3.12
Provides-Extra: lambda
Description-Content-Type: text/markdown

# clisechubman

Development flow as Paleofuturistic Python

## Usage

Legacy: `pip install clisechubman`

Preferred: `uv add clisechubman`

## Developing further

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

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

### Setup

- Fork and 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: `uv run mkdocs serve`
- Make a pull request.
