-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated setup.py for dependencies Updated/Fixed Makefile
- Loading branch information
Showing
3 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
PYTHON=/usr/bin/env python | ||
PYTHON=python3 | ||
|
||
deps: requirements.txt | ||
pip install -r requirements.txt | ||
|
||
docs: | ||
@cd docs; \ | ||
cd docs; \ | ||
echo "Building documentation..."; \ | ||
pip install -r requirements.txt | ||
@$(PYTHON) -m mkdocs build | ||
pip install -r requirements.txt ; \ | ||
cd ..; \ | ||
$(PYTHON) -m mkdocs build | ||
|
||
test: | ||
@$(PYTHON) -m unittest discover tests | ||
$(PYTHON) -m unittest discover tests | ||
|
||
install: | ||
$(PYTHON) setup.py install | ||
|
||
clean: | ||
rm -rf venv | ||
find . -type f -name "*.pyc" -delete | ||
|
||
.PHONY: init docs test | ||
.PHONY: deps docs test install clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters