Metadata-Version: 2.4
Name: fovec
Version: 0.1.1
Summary: From fovea to vector
Author: Sean Tseng
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"

# fovec

Python package scaffold using a `src/` layout.

## Structure

```text
.
├── pyproject.toml
├── README.md
├── src/
│   └── fovec/
│       └── __init__.py
└── tests/
    └── test_import.py
```

## Quick start

```bash
python -m pip install -e .[dev]
pytest
```
