Makefile 314 B

1234567891011121314151617
  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. @python -c "import cvfinetune; print('v{}'.format(cvfinetune.__version__))"
  11. run_tests:
  12. python tests/main.py