Files
sigal/Makefile

26 lines
447 B
Makefile
Raw Normal View History

COLORBOX_PATH=sigal/themes/colorbox/static/css
2018-02-12 00:25:54 +01:00
all: colorbox
2014-11-09 00:04:17 +01:00
init:
pip install -r requirements.txt
docs:
make -C docs html
2014-11-09 00:04:17 +01:00
colorbox:
cat $(COLORBOX_PATH)/{base,skeleton,colorbox,style}.css | cssmin > $(COLORBOX_PATH)/style.min.css
2014-11-09 00:04:17 +01:00
test:
py.test
coverage:
py.test --cov sigal --cov-report term --cov-report=html
2018-02-12 00:25:54 +01:00
publish: colorbox
2014-11-09 00:04:17 +01:00
python setup.py register
2015-04-22 00:16:26 +02:00
python setup.py sdist bdist_wheel
twine upload dist/*
2014-11-09 00:04:17 +01:00
2018-02-12 00:25:54 +01:00
.PHONY: colorbox docs