grim/hgwebplus

b8497d5b7926
Parents 196c72790d44
Children 4bcf9895ae31
Add a makefile so we don't have to remember entire commands
  • +17 -0
    Makefile
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/Makefile Fri Apr 10 20:07:08 2020 -0500
    @@ -0,0 +1,17 @@
    +#!/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:
    + twine upload dist/*
    +