master-thesis/code/repository-template/README.md

20 lines
297 B
Markdown
Raw Permalink Normal View History

2022-10-13 13:35:20 +02:00
# Template
Contains
- `setup.py`
- `README.md`
- `LICENSE`
- `.gitignore` for python, optionally add `./data/` to gitignore if you want
- a folder with the actual python package structure
## Install steps:
```
conda create --name env
conda activate env
conda install pip
pip install -e .
```