extend setup.py, add Makefile, gitignore, requirements.txt

This commit is contained in:
Konstantin Baierer 2020-11-20 17:37:35 +01:00
parent 59b2dcb619
commit f229907e41
8 changed files with 235 additions and 15 deletions

21
Makefile Normal file
View file

@ -0,0 +1,21 @@
# BEGIN-EVAL makefile-parser --make-help Makefile
help:
@echo ""
@echo " Targets"
@echo ""
@echo " install Install with pip"
@echo " install-dev Install editable with pip"
@echo ""
@echo " Variables"
@echo ""
# END-EVAL
# Install with pip
install:
pip install .
# Install editable with pip
install-dev:
pip install -e .