This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/Makefile

13 lines
196 B
Makefile
Raw Normal View History

all: test bdist
2018-10-31 20:23:24 +03:00
bdist:
python3 setup.py sdist bdist_wheel
test:
pytest -q
upload:
twine check dist/*
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload dist/*