20 lines
297 B
Markdown
20 lines
297 B
Markdown
# 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 .
|
|
```
|