grim/hgkeeper-theme

Add a .hgignore
draft
2020-05-05, Gary Kramlich
d8b4dd8a410c
Add a .hgignore
#!/usr/bin/make -f
.PHONY: all
all: sdist
.PHONY: clean
clean:
rm -rf dist build *.egg-info
.PHONY: sdist
sdist:
python3 setup.py sdist
.PHONY: upload
upload: dist
twine upload dist/*