Metadata-Version: 2.4
Name: glosa
Version: 0.1.0
Summary: Glosa.
Author: credetus
Author-email: credetus <dev@credetus.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/credetus/glosa
Project-URL: Repository, https://github.com/credetus/glosa
Project-URL: Issues, https://github.com/credetus/glosa/issues
Project-URL: Changelog, https://github.com/credetus/glosa/releases
Description-Content-Type: text/markdown

# glosa

Glosa.

## Installation

```bash
uv add glosa
# or
pip install glosa
```

## Usage

```python
from glosa import BaseStorageManager, Glosa


class MyStorageManager(BaseStorageManager):
    pass


class MyGlosa(Glosa):
    pass


app = MyGlosa(storage_manager=MyStorageManager())
```

## Development

```bash
uv sync                      # create .venv and install dev dependencies
uv run pytest --cov          # run tests with coverage
uv run ruff check .          # lint
uv run ruff format .         # format
uv run ty check              # type check
uv build                     # build sdist + wheel into dist/
```

## Releasing

Releases are published to PyPI by GitHub Actions using
[trusted publishing](https://docs.pypi.org/trusted-publishers/) (no API tokens).

1. Bump the version: `uv version --bump patch` (or `minor` / `major`).
2. Commit and push to `main`.
3. Tag and push: `git tag v$(uv version --short) && git push --tags`.

The `Release` workflow runs CI, verifies the tag matches `pyproject.toml`,
builds and smoke-tests the distributions, publishes to PyPI, and creates a
GitHub Release with auto-generated notes.

## License

MIT
