Makefile 357 B

1234567891011121314151617181920212223
  1. install:
  2. pip install . --no-deps --upgrade
  3. build_sdist:
  4. @python setup.py build sdist
  5. deploy: build_sdist
  6. ./deploy_latest.sh
  7. test_deploy: build_sdist
  8. REPO=pypitest ./deploy_latest.sh
  9. get_version:
  10. @printf "v"
  11. @python setup.py --version
  12. run_tests:
  13. python tests/main.py
  14. run_coverage:
  15. @coverage run tests/main.py
  16. coverage html
  17. coverage report -m