Metadata-Version: 2.4
Name: bio-pype-builder
Version: 0.1.0
Summary: Interactive pipeline builder for BioPype
Author-email: Francesco Favero <favero.francesco@gmail.com>
License-Expression: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: bio-pype>=2.0.0
Requires-Dist: fastapi>=0.104.0
Requires-Dist: uvicorn[standard]>=0.24.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: pyyaml>=6.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"

# BioPype Builder

Interactive web-based builder for creating BioPype pipelines.

## Installation

```bash
pip install bio-pype-builder
```

## Usage

Start the builder:
```bash
bio-pype-builder
```

Or with Python:
```bash
python -m biopype_builder.builder
```

## Development

Install in development mode:
```bash
git clone https://codeberg.org/your-org/bio-pype-builder
cd bio-pype-builder
```

Build React UI:
```bash
cd biopype_builder/ui_react
npm install
npm run build
```

Install the package:
```bash
pip install -e .
```



## Requirements

- bio-pype >= 2.0.0
- Python >= 3.9
