Skip to content

Commit

Permalink
split out provider requirements (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis authored and justb4 committed May 30, 2019
1 parent 47ba15f commit e5639b3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -33,6 +33,7 @@ install:
- pip3 install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1`
- pip3 install -r requirements.txt
- pip3 install -r requirements-dev.txt
- pip3 install -r requirements-provider.txt
- python3 setup.py install


Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Expand Up @@ -53,6 +53,7 @@ RUN \
&& cd /pygeoapi \
&& pip3 install -r requirements.txt \
&& pip3 install -r requirements-dev.txt \
&& pip3 install -r requirements-provider.txt \
&& pip3 install -e . \
# Cleanup TODO: remove unused Locales and TZs
&& pip3 uninstall --yes wheel \
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -14,6 +14,7 @@ git clone https://github.com/geopython/pygeoapi.git
cd pygeoapi
pip install -r requirements.txt
pip install -r requirements-dev.txt
# install provider requirements accordingly from requirements-provider.txt
pip install -e .
cp pygeoapi-config.yml local.config.yml
vi local.config.yml
Expand Down
5 changes: 0 additions & 5 deletions requirements-dev.txt
Expand Up @@ -20,8 +20,3 @@ pypandoc
pyOpenSSL
ndg-httpsclient
pyasn1

# providers
elasticsearch
GDAL>=2.2,<3.0
psycopg2==2.7.6
3 changes: 3 additions & 0 deletions requirements-provider.txt
@@ -0,0 +1,3 @@
elasticsearch
GDAL>=2.2,<3.0
psycopg2==2.7.6

0 comments on commit e5639b3

Please sign in to comment.