Metadata-Version: 2.4
Name: pestipy
Version: 0.1.0
Summary: Unified pest and disease modeling interface in Python
Author: PestiPy contributors
License: MIT
Keywords: pest,disease,crop,modeling,simulation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pandas>=1.5
Requires-Dist: matplotlib>=3.5

# pestipy

`pestipy` is a Python package for running pest and disease models through a consistent API.

## Current model adapters

- `FranchestynModel`: adapter for the FraNchEstYN crop-disease model.

## Install (editable)

From repository root:

```bash
pip install -e ./pestipy
```

## Quick start

```python
from pestipy import FranchestynModel

model = FranchestynModel()
result = model.run()

print(result["returncode"])
print(result["output_files"])
```
