Makefile 263 B

1234567891011121314
  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__))"