Added Twine to dev requirements
parent
bc1a55f21f
commit
ecdcda1c36
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/* ; \
|
||||
|
|
|
@ -10,3 +10,4 @@ flake8-variables-names~=0.0.3
|
|||
setuptools~=49.6.0
|
||||
pytest>=6.0.1,<7.0.0
|
||||
pytest-asyncio>=0.14.0,<1.0.0
|
||||
twine>=3.2.0,<4.0.0
|
||||
|
|
Reference in New Issue