1234567891011121314151617 |
- install:
- pip install . --no-deps --upgrade
- build_sdist:
- @python setup.py build sdist
- deploy: build_sdist
- ./deploy_latest.sh
- test_deploy: build_sdist
- REPO=pypitest ./deploy_latest.sh
- get_version:
- @python -c "import cvfinetune; print('v{}'.format(cvfinetune.__version__))"
- run_tests:
- python tests/main.py
|