grim/reviewboard_jetbrains_hub

Add a makefile

2020-11-02, Gary Kramlich
e6b07d866ae7
Parents 782d5cdb0fcb
Children d7c656756064
Add a makefile
  • +3 -0
    ChangeLog
  • +17 -0
    Makefile
  • --- a/ChangeLog Mon Nov 02 23:59:44 2020 -0600
    +++ b/ChangeLog Mon Nov 02 23:59:48 2020 -0600
    @@ -1,3 +1,6 @@
    +1.0.3 (????-??-??):
    + * Added a makefile to simplify packaging.
    +
    1.0.2 (2020-11-02):
    * Added a note about needing app passwords for oauth accounts.
    --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/Makefile Mon Nov 02 23:59:48 2020 -0600
    @@ -0,0 +1,17 @@
    +#!/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/*
    +