Browser and install GUI for cookiecutter templates

⌈⌋ ⎇ branch:  cookiedough


Artifact [575b912ebd]

Artifact 575b912ebdabb9de7fc8e845c10ab7025f6ffe5e8f91a37b9bca79097297bf64:

  • Executable file Makefile — part of check-in [4086e00f2c] at 2021-03-20 08:57:40 on branch trunk — add setuptools, Makefile (user: mario size: 792)

#!/usr/bin/make

run:
	python3 -m cookiedough
setup:
	#pandoc README.md -o README.rst
	python3 setup.py bdist_wheel
	rm -r cookiedough.egg-info
upload: setup
	python3 setup.py bdist_wheel upload
	rm -r cookiedough.egg-info
t:
	pytest -v -v -v -v
profile:
	python3 -m cProfile -o profile_data.pyprof -m cookiedough
	pyprof2calltree -i profile_data.pyprof -k

docs:
	pygmentize -S pastie -f html > logfmt1/docs/syntax.css
	cd logfmt1 ; PYTHONPATH=. mkdocs build -v -v -v
	sed -i 's/table\.docutils/table/g' logfmt1/html/css/theme.css 
	sed -i 's/[{};]/&\n/g' logfmt1/html/css/theme.css
%.1:	%.md
	pandoc --standalone -f markdown+pandoc_title_block -t man $< -o $@
%.5:	%.md
	pandoc --standalone -f markdown+pandoc_title_block -t man $< -o $@
man:	manpage/cookiedough.1 manpage/cookiecutter.1