Added Twine to dev requirements
This commit is contained in:
parent
bc1a55f21f
commit
ecdcda1c36
2 changed files with 1 additions and 4 deletions
4
Makefile
4
Makefile
|
|
@ -7,8 +7,6 @@ SRC=frank
|
|||
VENV=venv
|
||||
# Docs directory
|
||||
DOCS=docs
|
||||
# Tests directory
|
||||
TESTS=tests
|
||||
# Interpreter to create venv with
|
||||
INTERPRETER=python3.8
|
||||
|
||||
|
|
@ -67,8 +65,6 @@ package: README.md LICENSE setup.py test clean-setup
|
|||
@ "$(VENV)/bin/python" setup.py sdist bdist_wheel
|
||||
|
||||
publish: package
|
||||
@ echo 'Installing twine...'
|
||||
@ $(VENV)/bin/pip install --quiet --upgrade twine
|
||||
@ [ git symbolic-ref HEAD --short = master ] && { \
|
||||
echo 'Publishing to PyPi...'; \
|
||||
$(VENV)/bin/python -m twine upload dist/* ; \
|
||||
|
|
|
|||
Reference in a new issue