grim/reviewboard_jetbrains_hub

Add a makefile

2020-11-02, Gary Kramlich
e6b07d866ae7
Add a makefile
#!/usr/bin/make -f
.PHONY: all
all: sdist
.PHONY: clean
clean:
rm -rf dist build *.egg-info
.PHONY: sdist
sdist:
python setup.py sdist
.PHONY: upload
upload:
twine upload dist/*