mirror of
https://github.com/Skyai-io/landsat-util.git
synced 2026-03-10 09:01:18 +00:00
27 lines
504 B
YAML
27 lines
504 B
YAML
machine:
|
|
python:
|
|
version: 2.7.10
|
|
|
|
dependencies:
|
|
pre:
|
|
- sudo apt-get -y update
|
|
- sudo apt-get install -f --yes libgdal-dev
|
|
- pip install setuptools>=20.3.1
|
|
- pip install -U pip
|
|
- pip install wheel
|
|
- pip install tox>=2.3.1
|
|
|
|
test:
|
|
override:
|
|
- tox
|
|
|
|
|
|
deployment:
|
|
production:
|
|
branch: master
|
|
commands:
|
|
- echo "[pypi]" > ~/.pypirc
|
|
- echo "username:" $PYPI_USERNAME >> ~/.pypirc
|
|
- echo "password:" $PYPI_PASSWORD >> ~/.pypirc
|
|
- make release
|