Spirit/Makefile
Esteban Castro Borsani 6dc6c87a04 Feature/install (#193)
* 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
2017-09-24 12:38:54 -03:00

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