Installation
You can install aplusml using pip:
pip install aplusml
Note: You may also need to install graphviz to enable workflow visualization:
brew install graphviz
🧑💻 Development
For development, clone the repository and install it in editable mode:
# Clone repo
git clone https://github.com/som-shahlab/aplusml.git
cd aplusml
# Create virtual env
conda create -n aplus python=3.10 -y
conda activate aplus
# Install dependencies
poetry install