Metadata-Version: 2.4
Name: aria-tools
Version: 0.0.1
Summary: Aria tools for use by Aria Agents through Hypha.
License-Expression: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: schema-agents<0.2.0,>=0.1.0
Requires-Dist: hypha<0.21.0,>=0.20.0
Requires-Dist: hypha-rpc<0.21.0,>=0.20.0
Requires-Dist: biopython>=1.8
Requires-Dist: dotenv>=0.9
Requires-Dist: pydantic<3.0,>=2.0
Dynamic: license-file

# Aria Tools

Schema tools for automating and managing scientific research workflows. Adapted from [Aria Agents](https://github.com/aicell-lab/aria-agents).

## Development

### Prerequisites

- Python 3.11
- Conda

### Installation

To install, run the setup script:
```bash
scripts/setup_dev.sh
```

### Running the Development Environment

#### Running on local server

To run the development server locally, use:
```bash
python -m aria_tools local
```

#### Running on remote server

To run the development server on a remote server, use:
```bash
python -m aria_tools remote --server-url <server_url>
```

### Testing

Run the tests using pytest:
```bash
pytest
```
