Metadata-Version: 2.4
Name: staticpin
Version: 0.2.0
Summary: Pin frontend static dependencies for Python web projects
Project-URL: bugs, https://github.com/feldroy/staticpin/issues
Project-URL: changelog, https://github.com/feldroy/staticpin/releases
Project-URL: documentation, https://feldroy.github.io/staticpin/
Project-URL: homepage, https://github.com/feldroy/staticpin
Author-email: Daniel Roy Greenfeld <daniel@feldroy.com>
Maintainer-email: Daniel Roy Greenfeld <daniel@feldroy.com>
License: MIT
License-File: LICENSE
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: httpx>=0.28.1
Requires-Dist: rich
Requires-Dist: typer
Description-Content-Type: text/markdown

# staticpin

![PyPI version](https://img.shields.io/pypi/v/staticpin.svg)

Pin frontend static dependencies for Python web projects

* Created by **[Daniel Roy Greenfeld](https://daniel.feldroy.com/)**
  * GitHub: https://github.com/pydanny
  * PyPI: https://pypi.org/user/pydanny/
* PyPI package: https://pypi.org/project/staticpin/
* Free software: MIT License

## Features

* TODO

## Documentation

Documentation is built with [Zensical](https://zensical.org/) and deployed to GitHub Pages.

* **Live site:** https://feldroy.github.io/staticpin/
* **Preview locally:** `just docs-serve` (serves at http://localhost:8000)
* **Build:** `just docs-build`

API documentation is auto-generated from docstrings using [mkdocstrings](https://mkdocstrings.github.io/).

Docs deploy automatically on push to `main` via GitHub Actions. To enable this, go to your repo's Settings > Pages and set the source to **GitHub Actions**.

## Development

To set up for local development:

```bash
# Clone your fork
git clone git@github.com:your_username/staticpin.git
cd staticpin

# Install in editable mode with live updates
uv tool install --editable .
```

This installs the CLI globally but with live updates - any changes you make to the source code are immediately available when you run `staticpin`.

Run tests:

```bash
uv run pytest
```

Run quality checks (format, lint, type check, test):

```bash
just qa
```

## Author

staticpin was created in 2026 by Daniel Roy Greenfeld.

Built with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [audreyfeldroy/cookiecutter-pypackage](https://github.com/audreyfeldroy/cookiecutter-pypackage) project template.
