Metadata-Version: 2.4
Name: osl-edu-math
Version: 0.2.1
Summary: Python tools for math education workflows.
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: education,math,python,open-science
Author: Open Science Labs Incubator
Requires-Python: >=3.10,<4
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
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: Topic :: Education
Classifier: Topic :: Scientific/Engineering :: Mathematics
Provides-Extra: dev
Provides-Extra: docs
Requires-Dist: ipython (>=7)
Requires-Dist: ipywidgets (>=6)
Requires-Dist: makim (==1.29.0) ; extra == "dev"
Requires-Dist: matplotlib (>=2)
Requires-Dist: mypy (>=1.10) ; extra == "dev"
Requires-Dist: numpy (>=2)
Requires-Dist: pre-commit (>=3) ; extra == "dev"
Requires-Dist: pytest (>=8) ; extra == "dev"
Requires-Dist: pytest-cov (>=5) ; extra == "dev"
Requires-Dist: ruff (>=0.6) ; extra == "dev"
Requires-Dist: sympy (>=1)
Project-URL: Documentation, https://osl-incubator.github.io/edu-math/
Project-URL: Homepage, https://github.com/osl-incubator/edu-math
Project-URL: Issues, https://github.com/osl-incubator/edu-math/issues
Project-URL: Repository, https://github.com/osl-incubator/edu-math
Description-Content-Type: text/markdown

# edu-math

![CI](https://img.shields.io/github/actions/workflow/status/osl-incubator/edu-math/ci.yml?logo=github&label=CI)
[![Python Versions](https://img.shields.io/pypi/pyversions/osl-edu-math)](https://pypi.org/project/osl-edu-math/)
[![Package Version](https://img.shields.io/pypi/v/osl-edu-math?color=blue)](https://pypi.org/project/osl-edu-math/)
![License](https://img.shields.io/pypi/l/osl-edu-math?color=blue)

`edu-math` is a Python package for math education workflows.

The PyPI distribution is `osl-edu-math`; the import package remains `edumath`.

The project is in its initial scaffold stage. The repository includes packaging,
testing, linting, documentation, release automation, and GitHub workflow
infrastructure adapted from the Open Science Labs Incubator Python package
template used by `prisma-flow`.

## Installation

```bash
pip install osl-edu-math
```

## Development

```bash
conda env create -f conda/dev.yaml
conda activate edumath
poetry config virtualenvs.create false
poetry install --extras "dev"
```

Run checks through Makim:

```bash
makim tests.linter
makim tests.unit
makim package.build
makim docs.build
```

## Project layout

- `src/edumath/`: Python package source
- `tests/`: pytest test suite
- `docs/`: Quarto documentation website
- `conda/`: development and release environment files
- `.github/`: issue templates and GitHub Actions workflows

