yet another simple static gallery generator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
357 B

init:
pip install -e .
pip install -r requirements.txt
docs:
make -C docs html
test:
pytest
coverage:
pytest --cov sigal --cov-report term --cov-report=html
demo:
sigal build -c tests/sample/sigal.conf.py && sigal serve tests/sample/_build
publish:
python setup.py register
python setup.py sdist bdist_wheel
twine upload dist/*
.PHONY: docs