Makefile 213 B

1234567891011
  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. get_version:
  8. @python -c "import cvargparse; print('v{}'.format(cvargparse.__version__))"