Metadata-Version: 2.4
Name: autoimmune
Version: 0.0.1
Summary: Autoimmune
Project-URL: Homepage, https://github.com/briney/autoimmune
Project-URL: Repository, https://github.com/briney/autoimmune
Project-URL: Issues, https://github.com/briney/autoimmune/issues
Author-email: Bryan Briney <briney@scripps.edu>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.11
Provides-Extra: dev
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Description-Content-Type: text/markdown

# autoimmune

## Installation

```bash
pip install autoimmune
```

### Development

```bash
git clone https://github.com/briney/autoimmune.git
cd autoimmune
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
```

## Testing

```bash
pytest
```
