Skip to content

Commit

Permalink
documented setup
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbinschmid committed Jun 10, 2024
1 parent d402ed4 commit 862c590
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# MANTRA: Manifold Triangulations

## Setup

0. Clone with submodules. After cloning, run `git submodule update --init --recursive`
1. Setup python version 3.10.13. E.g. with `pyenv install 3.10.13` and `pyenv local 3.10.13`. Set up a virtual environment, e.g. via `python3 -m venv ./venv` and `source ./venv/bin/activate`,
2. Install dependencies via poetry
```s
$ pip install --upgrade pip
$ pip install poetry
$ poetry install
```
3. Install toponetx dependency
4. `pip install -e ./mantra/`

## Usage

1. `python generate_configs.py`
Expand Down
1 change: 1 addition & 0 deletions models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .models import ModelType, model_lookup, ModelConfig, model_cfg_lookup

0 comments on commit 862c590

Please sign in to comment.