Admin Panel
# Makefile for musashi
BUILD_DIR = build
DIST_DIR = dist
PYTHON = python
SHOW_CMD = open
#PYTHON = python-dbg
.PHONY: help init build test docker-tox docs show
.PHONY: clean clean_all clean_git clean_py
.PHONY: init sdist bdist upload
help:
@echo "init initialize project"
@echo "build build native extension"
@echo
@echo "test run tests"
@echo "docker-tox build tox docker container"
@echo
@echo "docs generate docs"
@echo "show show docs in browser"
@echo
@echo "clean clean build"
@echo "clean_all clean dist"
@echo "clean_git clean non-git files"
@echo "clean_py remove compiled .pyc files"
@echo
@echo "install install package"
@echo "sdist build source dist"
@echo "bdist build bin dist wheel"
@echo "upload upload dist with twin to pypi"
init:
pip install --upgrade setuptools pip
pip install --upgrade -r requirements-dev.txt
pip install --upgrade -r requirements-test.txt
pip install --upgrade --editable .
build:
$(PYTHON) setup.py build_ext -i
# testing
test:
$(PYTHON) setup.py test
# doc
docs:
[ -d build/docs/html ] || mkdir -p build/docs/html
sphinx-build -b html docs build/docs/html
show:
$(SHOW_CMD) build/docs/html/index.html
# clean
clean:
rm -rf $(BUILD_DIR)
clean_all: clean
rm -rf $(DIST_DIR)
clean_git:
git clean -fxd
clean_py:
find . -name *.pyc -exec rm {} \;
# install, distrib
install:
$(PYTHON) setup.py install
sdist:
$(PYTHON) setup.py sdist --formats=zip
bdist:
$(PYTHON) setup.py bdist_wheel
upload: sdist
twine upload dist/*
# container
docker-build:
docker build -t amitools-tox .