Makefile 244 B

123456789101112131415
  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