8b10b/Makefile

26 lines
460 B
Makefile
Raw Normal View History

2019-04-30 16:10:33 +00:00
.PHONY: init freeze test test_verbose build_dist upload
venv:
python3 -m venv .env
2019-04-30 13:55:09 +00:00
init:
pip install -r requirements.txt
2019-04-30 16:10:33 +00:00
freeze:
pip freeze | grep -v "pkg-resources" > requirements.txt
2019-04-30 13:55:09 +00:00
test:
nosetests tests/*
test_verbose:
nosetests --nocapture tests/*
2019-04-30 16:10:33 +00:00
build_dist:
rm -rf dist/*
python3 setup.py sdist bdist_wheel
upload_test:
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
upload:
python3 -m twine upload dist/*