Metadata-Version: 2.4
Name: lumon
Version: 0.1.0
Summary: A python package.
Project-URL: Homepage, https://github.com/phillipdupuis/lumon
Project-URL: Repository, https://github.com/phillipdupuis/lumon
Author-email: Phillip Dupuis <phillip_dupuis@alumni.brown.edu>
License: GNU General Public License v3.0
License-File: LICENSE
Requires-Python: >=3.13
Provides-Extra: dev
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

# Lumon

[![PyPI version](https://badge.fury.io/py/lumon.svg)](https://badge.fury.io/py/lumon)
[![Test](https://github.com/phillipdupuis/lumon/actions/workflows/test.yml/badge.svg)](https://github.com/phillipdupuis/lumon/actions/workflows/test.yml)
[![Lint](https://github.com/phillipdupuis/lumon/actions/workflows/lint.yml/badge.svg)](https://github.com/phillipdupuis/lumon/actions/workflows/lint.yml)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

< ... description ... >

## Installation

```bash
pip install lumon
```

With [uv](https://github.com/astral-sh/uv):

```bash
uv pip install lumon
```

## Usage

```python
import lumon

# Add usage examples here
```

## Development

This project uses modern Python tooling:

- [uv](https://github.com/astral-sh/uv) for dependency management
- [pytest](https://docs.pytest.org/) for testing
- [ruff](https://github.com/astral-sh/ruff) for linting and formatting

### Setup

```bash
# Clone the repository
git clone https://github.com/phillipdupuis/lumon.git
cd lumon

# Install development dependencies
uv pip install -e ".[dev]"
```

### Running Tests

```bash
pytest
```

### Code Quality

```bash
ruff check .
ruff format .
```

## License

[GNU General Public License v3.0](LICENSE)
