Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
init:
pip install numpy ; \
pip install -r requirements.txt
poetry install

test:
python -m unittest discover
poetry run pytest

install_develop:
python setup.py develop
poetry install

install:
python setup.py install
poetry install --no-dev

documentation:
sphinx-apidoc -e -f DeepLearningBatchGeneratorUtils -o doc/
poetry run sphinx-apidoc -e -f DeepLearningBatchGeneratorUtils -o doc/
Loading