mirror of
https://github.com/QingdaoU/Spirit.git
synced 2024-12-28 07:22:07 +00:00
6dc6c87a04
* add yarn * spirit startproject command * readme usage * remove example from travis * readme run tests * exit instead of raise * remove yarn.lock * core.conf settings * django.conf.settings -> core.conf.settings everywhere * editorconfig makefiles * docs * core.conf.defaults docs * installation docs * upgrade docs * update history * spirit.settings deprecation warning * update readme
17 lines
242 B
Makefile
17 lines
242 B
Makefile
clean:
|
|
rm -fr dist/ build/ *.egg-info/
|
|
|
|
docs:
|
|
cd docs && make clean && make html
|
|
|
|
test:
|
|
python runtests.py
|
|
|
|
sdist: test clean
|
|
python setup.py sdist
|
|
|
|
release: test clean
|
|
python setup.py sdist upload
|
|
|
|
.PHONY: clean test sdist release docs
|