Metadata-Version: 2.4
Name: sigma-finance
Version: 0.1.2
Summary: Sigma CLI finance tracker
License: MIT
Project-URL: Homepage, https://github.com/fzunigam/sigma
Project-URL: Issues, https://github.com/fzunigam/sigma/issues
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.12.3
Requires-Dist: rich>=13.7.1
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
Provides-Extra: dev
Requires-Dist: pytest>=8.2.0; extra == "dev"
Requires-Dist: ruff>=0.4.0; extra == "dev"
Requires-Dist: build>=1.2.2; extra == "dev"
Requires-Dist: twine>=6.1.0; extra == "dev"
Dynamic: license-file

# Sigma (`sgm`)

Sigma is a CLI-first personal finance tracker focused on fast transaction logging and auditable render snapshots.

## Quickstart
```bash
pip install sigma-finance
sgm start
```

## Setup and persistence
- First-run setup: `sgm start` (writes `~/.config/sgm/config.toml`)

## Development
```bash
python3 -m venv .venv
source .venv/bin/activate
make install
make lint
make test
```

## Testing approach
- **Smoke tests** (`tests/smoke`): end-to-end CLI flows with Typer `CliRunner`.

## Versioning and changelog process
- Sigma follows **Semantic Versioning**.
- `CHANGELOG.md` follows **Keep a Changelog**.
- Keep `pyproject.toml` and `src/sgm/__init__.py` versions in sync.

## Documentation
- Architecture: `docs/architecture.md`
- Decision log: `docs/decisions/`
- Conventions: `docs/conventions/`
