Metadata-Version: 2.4
Name: slsa-battleground
Version: 0.0.2
Summary: Minimal package for testing SLSA provenance in GitHub Actions
Project-URL: Homepage, https://github.com/IvanAnishchuk/slsa-battleground
Project-URL: Repository, https://github.com/IvanAnishchuk/slsa-battleground
Project-URL: Issues, https://github.com/IvanAnishchuk/slsa-battleground/issues
Project-URL: Changelog, https://github.com/IvanAnishchuk/slsa-battleground/blob/main/CHANGELOG.md
Project-URL: Security, https://github.com/IvanAnishchuk/slsa-battleground/blob/main/SECURITY.md
Author-email: Ivan Anishchuk <ivan@ivananishchuk.net>
License-Expression: CC0-1.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.13
Requires-Dist: rich>=13.0
Requires-Dist: typer>=0.15
Description-Content-Type: text/markdown

# SLSA Battleground

Minimal package for testing SLSA provenance in GitHub Actions

## Installation

```bash
uv tool install slsa-battleground
# or
pip install slsa-battleground
```

## Usage

```bash
slsa-battleground --help
```

## Development

```bash
git clone https://github.com/IvanAnishchuk/slsa-battleground.git
cd slsa-battleground
uv sync

# Run tests
uv run pytest

# Run lints
uv run ruff check src/ tests/
uv run ruff format --check src/ tests/
uv run ty check

# Run full pre-commit suite
uv run pre-commit run --all-files

# Run supply-chain audit
uv run python scripts/audit.py
```

## License

CC0-1.0
