diff --git a/Makefile b/Makefile index 8339d7d..18f7003 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,8 @@ release: clean git config commit.gpgSign true bumpversion $(bump) git push upstream && git push upstream --tags - python setup.py sdist bdist_wheel upload + python setup.py sdist bdist_wheel + twine upload dist/* git config commit.gpgSign "$(CURRENT_SIGN_SETTING)" dist: clean diff --git a/setup.py b/setup.py index 4bfc7a7..99618aa 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ extras_require = { "bumpversion>=0.5.3,<1", "pytest-watch>=4.1.0,<5", "wheel", + "twine", "ipython", ], }