Makefile 301 B

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