Makefile 271 B

123456789101112131415161718
  1. install:
  2. pip install . --no-deps --upgrade
  3. build:
  4. python setup.py build
  5. deploy:
  6. python setup.py sdist upload -r pypi
  7. test_deploy:
  8. python setup.py sdist upload -r pypitest
  9. get_version:
  10. @printf "v"
  11. @python setup.py --version
  12. run_tests:
  13. @bash scripts/tests.sh .