Skip to content

Commit 90b104d

Browse files
committed
Update setup.py and test/deploy scripts
- drop pbr - update setuptools to >= 30.3 - specify requirements and tests_require in setup.cfg - refer to smif package under src - update travis install method - specify (CLI) entry_points in setup.py - sprinkle tests with __init__.py following pytest good practises recommendation https://docs.pytest.org/en/latest/goodpractices.html - remove unused features for behave (BDD testing) - simplify .environment.yml - this is used by ReadTheDocs to build smif docs - dependencies are commented if for #dev #test or #docs, with the idea that dev and test dependencies are handy to have here for a developer setting up a new conda environment. - no version numbers (only pinning numbers in requirements.txt) - sort requirements.txt, relax versions to >=X.Y - specify stages for travis, and skip cleanup on deploy - skip_cleanup means the web assets built by are left in place for the python package to include - build stages allow travis to run multiple jobs in parallel, then the next stage after those are complete - for us, that could mean testing several python versions then deploying just once - remove apt (git and pip) requirements for travis - specify data files in MANIFEST
1 parent c86f7c4 commit 90b104d

19 files changed

+201
-217
lines changed

.coveragerc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# .coveragerc to control coverage.py
22
[run]
33
branch = True
4-
source = smif
5-
# omit = bad_file.py
4+
source = src/smif
65

76
[report]
87
# Regexes for lines to exclude from consideration

.environment.yml

+20-93
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,28 @@
11
# Conda environment specification
2-
# 1. to export (recommend editing before checking in to git):
3-
# conda env export > .environment.yml
4-
# 2. to import/create a copy of the environment:
2+
# To import/create a copy of the environment:
53
# conda env create -f .environment.yml
64
name: smif
75
channels:
86
- conda-forge
97
- defaults
108
dependencies:
11-
- backports=1.0=py35_1
12-
- backports.functools_lru_cache=1.4=py35_1
13-
- ca-certificates=2017.11.5=0
14-
- certifi=2017.11.5=py35_0
15-
- click=6.7=py35_0
16-
- click-plugins=1.0.3=py35_0
17-
- cligj=0.4.0=py35_0
18-
- curl=7.55.1
19-
- cycler=0.10.0=py35_0
20-
- expat=2.1.0
21-
- fiona=1.7.10=py35_2
22-
- freetype=2.7
23-
- freexl=1.0.2
24-
- gdal=2.1.3
25-
- geos=3.6.2
26-
- hdf4=4.2.13
27-
- hdf5=1.10.1
28-
- icu=58.2
29-
- jpeg=9b
30-
- kealib=1.4.7
31-
- krb5=1.14.2
32-
- libiconv=1.14
33-
- libnetcdf=4.4.1.1
34-
- libpng=1.6.28
35-
- libpq=9.6.3
36-
- libspatialindex=1.8.5
37-
- libspatialite=4.3.0a
38-
- libssh2=1.8.0
39-
- libtiff=4.0.9
40-
- libxml2=2.9.5
41-
- matplotlib=2.1.0=py35_1
42-
- munch=2.2.0=py35_0
43-
- openjpeg=2.1.2
44-
- openssl=1.0.2l
45-
- pcre=8.39
46-
- pip=9.0.1=py35_0
47-
- proj4=4.9.3
48-
- pyparsing=2.2.0=py35_0
49-
- pyqt=5.6.0=py35_4
50-
- python=3.5.4=1
51-
- python-dateutil=2.6.1=py35_0
52-
- pytz=2017.3=py_2
53-
- pyyaml=3.12=py35_1
54-
- qt=5.6.2
55-
- rtree=0.8.3=py35_0
56-
- scikit-optimize=0.3=py35_0
57-
- setuptools=37.0.0=py35_0
58-
- shapely=1.6.2=py35_1
59-
- sip=4.18=py35_1
60-
- six=1.11.0=py35_1
61-
- sqlite=3.13.0
62-
- tornado=4.5.2=py35_0
63-
- wheel=0.30.0
64-
- xerces-c=3.2.0
65-
- yaml=0.1.6
66-
- zlib=1.2.11
67-
- mkl=2017.0.3=0
68-
- numpy=1.13.1=py35_0
69-
- scikit-learn=0.19.0=np113py35_0
70-
- scipy=0.19.1=np113py35_0
9+
- python=3.6
10+
- codecov # test
11+
- fiona
12+
- flask
13+
- isodate
14+
- networkx
15+
- numpy
16+
- pint
17+
- pylint # dev
18+
- pytest # test
19+
- pytest-cov # test
20+
- python-dateutil
21+
- pyyaml
22+
- rtree
23+
- scikit-optimize
24+
- shapely
25+
- sphinx # docs
7126
- pip:
72-
- alabaster==0.7.10
73-
- aspy.yaml==1.0.0
74-
- babel==2.5.3
75-
- backports.functools-lru-cache==1.4
76-
- better-apidoc==0.1.2
77-
- cached-property==1.3.1
78-
- chardet==3.0.4
79-
- colorama==0.3.9
80-
- decorator==4.1.2
81-
- docutils==0.14
82-
- flask==0.12.2
83-
- identify==1.0.7
84-
- idna==2.6
85-
- imagesize==0.7.1
86-
- isodate==0.6.0
87-
- itsdangerous==0.24
88-
- jinja2==2.10
89-
- markupsafe==1.0
90-
- networkx==1.11
91-
- nodeenv==1.2.0
92-
- pint==0.8.1
93-
- pre-commit==1.4.1
94-
- pygments==2.2.0
95-
- requests==2.18.4
96-
- snowballstemmer==1.2.1
97-
- sphinx==1.6.6
98-
- sphinxcontrib-websupport==1.0.1
99-
- urllib3==1.22
100-
- virtualenv==15.1.0
101-
- werkzeug==0.12.2
27+
- better-apidoc # docs
28+
- pre-commit # dev

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- id: check-xml
99
- id: debug-statements
1010
- id: end-of-file-fixer
11+
- id: requirements-txt-fixer
1112
- id: flake8
1213
args:
1314
- --exclude=docs/conf.py --ignore F401,F811 tests

.travis.yml

+35-33
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,46 @@
11
sudo: false
22
language: python
3-
virtualenv:
4-
system_site_packages: true
3+
notifications:
4+
email: false
5+
56
cache:
67
pip: true
78
directories:
8-
- smif/app/node_modules
9+
- src/smif/app/node_modules
910
before_cache:
1011
- rm -f $HOME/.cache/pip/log/debug.log
12+
1113
env:
1214
global:
13-
- SKIP_GENERATE_AUTHORS=1
14-
- SKIP_WRITE_GIT_CHANGELOG=1
15+
- SKIP_GENERATE_AUTHORS=1
16+
- SKIP_WRITE_GIT_CHANGELOG=1
17+
- DISTRIB="conda"
1518
matrix:
16-
- DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="false"
17-
- DISTRIB="conda" PYTHON_VERSION="3.6" COVERAGE="true"
18-
install:
19-
- source tests/travis_install.sh
20-
- pip install -r test-requirements.txt -r requirements.txt
21-
- python setup.py develop
22-
- nvm install 6.11.4
23-
- nvm use 6.11.4
24-
- cd $TRAVIS_BUILD_DIR/smif/app && npm install
19+
- PYTHON_VERSION="3.5" COVERAGE="false"
20+
- PYTHON_VERSION="3.6" COVERAGE="true"
21+
22+
install: source $TRAVIS_BUILD_DIR/ci/install.sh
2523
script:
26-
- cd $TRAVIS_BUILD_DIR && python setup.py test
27-
- cd $TRAVIS_BUILD_DIR/smif/app && npm test
28-
after_success:
29-
- cd $TRAVIS_BUILD_DIR
30-
- if [[ "$COVERAGE" == "true" ]]; then bash <(curl -s https://codecov.io/bash) -cF python || echo "failed"; fi
31-
- cd $TRAVIS_BUILD_DIR/smif/app && npm run-script report
32-
- if [[ "$COVERAGE" == "true" ]]; then bash <(curl -s https://codecov.io/bash) -cF javascript || echo "failed"; fi
33-
notifications:
34-
email: false
35-
before_deploy:
36-
cd $TRAVIS_BUILD_DIR/smif/app && npm run build
37-
deploy:
38-
provider: pypi
39-
user: willu47
40-
password:
41-
secure: MNNitxCYMRYG/AFTL+t3bAeR8z6Zda8ujUQEi1Nyvkug+Tl5rOX7Oz96GKr7XPfmTdVxSA2kBPBEjNmsAl8btSCl+5KyybqnBy00TpwzwLfmNZZvhLa54joOhli91a11g0pI8nrGXakSdzaeJhpoG2xb1hhEJ0i/18RUDH0JcjHLUW83f9AnY23lP/wnduto8ekwn9YtGWnc8QopFbA1VJK01ZBCHYsbAs/BhLXZrTI/KhFcnLQu4mLdSF7aONLlNaYUlKdLBRR6X7gczBiFQvy/05WHjohP5y8LbjnKGg9bEGtQzw+oNAa4FTrWClTBRvzWcZM+IDR5j87+FopBBnmuL2skLRV/uImyshtR+LC0bs6/M4ULSpe7jr5e4+bV6ptHtdJt6HcN5p3F4WnEusHCojx0l17ThtfF+vV16lHStfZUkqBu/MqqqW8CqbXDf8hZcCOXV11ImTHEQ8u0FEaIj85l95pG6ol+6ng1CuuTwHnIC3ZfMmqx/jnSyqsBib3QaSeNMxvIzgGyHD3ofMaunCF65yU1cRsiVVoHOe2gRs9hyjZKfPSA3jhPeCGMSLR9Pq2aSDiPH+Ri48/7XrqlRDh5o2V9nZ6vkkotSE24m9QXiGbRIct5q4UUQ4wPULTCNpVOxVOIClJeyexHDIZb0Z/vl/hjnrrl5csu0ZQ=
42-
on:
43-
tags: true
44-
all_branches: true
24+
- cd $TRAVIS_BUILD_DIR && python setup.py test
25+
- cd $TRAVIS_BUILD_DIR/src/smif/app && npm test
26+
after_success: $TRAVIS_BUILD_DIR/ci/coverage.sh
27+
28+
jobs:
29+
include:
30+
- stage: PyPI release
31+
if: tag =~ ^v
32+
env: PYTHON_VERSION="3.6" COVERAGE="false"
33+
install: source $TRAVIS_BUILD_DIR/ci/install.sh
34+
script: echo "Deploying to PyPI"
35+
before_deploy:
36+
- cd $TRAVIS_BUILD_DIR/src/smif/app && npm run build
37+
- cd $TRAVIS_BUILD_DIR
38+
deploy:
39+
provider: pypi
40+
user: willu47
41+
password:
42+
secure: MNNitxCYMRYG/AFTL+t3bAeR8z6Zda8ujUQEi1Nyvkug+Tl5rOX7Oz96GKr7XPfmTdVxSA2kBPBEjNmsAl8btSCl+5KyybqnBy00TpwzwLfmNZZvhLa54joOhli91a11g0pI8nrGXakSdzaeJhpoG2xb1hhEJ0i/18RUDH0JcjHLUW83f9AnY23lP/wnduto8ekwn9YtGWnc8QopFbA1VJK01ZBCHYsbAs/BhLXZrTI/KhFcnLQu4mLdSF7aONLlNaYUlKdLBRR6X7gczBiFQvy/05WHjohP5y8LbjnKGg9bEGtQzw+oNAa4FTrWClTBRvzWcZM+IDR5j87+FopBBnmuL2skLRV/uImyshtR+LC0bs6/M4ULSpe7jr5e4+bV6ptHtdJt6HcN5p3F4WnEusHCojx0l17ThtfF+vV16lHStfZUkqBu/MqqqW8CqbXDf8hZcCOXV11ImTHEQ8u0FEaIj85l95pG6ol+6ng1CuuTwHnIC3ZfMmqx/jnSyqsBib3QaSeNMxvIzgGyHD3ofMaunCF65yU1cRsiVVoHOe2gRs9hyjZKfPSA3jhPeCGMSLR9Pq2aSDiPH+Ri48/7XrqlRDh5o2V9nZ6vkkotSE24m9QXiGbRIct5q4UUQ4wPULTCNpVOxVOIClJeyexHDIZb0Z/vl/hjnrrl5csu0ZQ=
43+
on:
44+
tags: true
45+
all_branches: true
46+
skip_cleanup: true

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include src/smif/app/dist/*
2+
recursive-include smif/sample_project/

ci/coverage.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
# This script is meant to be called by the "after_success" step defined in
3+
# .travis.yml. See http://docs.travis-ci.com/ for more details.
4+
5+
set -e # exit on error
6+
set -x # echo commands
7+
8+
if [[ "$COVERAGE" == "true" ]]; then
9+
cd $TRAVIS_BUILD_DIR
10+
11+
# Upload python coverage
12+
bash <(curl -s https://codecov.io/bash) -cF python || echo "failed"
13+
14+
# Run node coverage
15+
cd $TRAVIS_BUILD_DIR/src/smif/app && npm run-script report
16+
17+
# Upload javascript coverage
18+
bash <(curl -s https://codecov.io/bash) -cF javascript || echo "failed"
19+
fi

tests/travis_install.sh ci/install.sh

+23-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#
77
# This script is taken from Scikit-Learn (http://scikit-learn.org/)
88
#
9-
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
109

1110
set -e
1211

@@ -27,14 +26,29 @@ if [[ "$DISTRIB" == "conda" ]]; then
2726
# Configure the conda environment and put it in the path using the
2827
# provided versions
2928
conda config --add channels conda-forge
30-
conda create -n testenv --yes python=$PYTHON_VERSION pip numpy pyyaml fiona rtree shapely scikit-optimize
29+
conda create -n testenv --yes python=$PYTHON_VERSION \
30+
fiona \
31+
flask \
32+
isodate \
33+
networkx \
34+
numpy \
35+
pint \
36+
pytest \
37+
pytest-cov \
38+
python-dateutil \
39+
pyyaml \
40+
rtree \
41+
scikit-optimize \
42+
shapely
3143
source activate testenv
32-
33-
elif [[ "$DISTRIB" == "ubuntu" ]]; then
34-
# Use standard ubuntu packages in their default version
35-
echo ubuntu
3644
fi
3745

38-
if [[ "$COVERAGE" == "true" ]]; then
39-
pip install coverage coveralls
40-
fi
46+
# Pip install by default
47+
pip install -r requirements.txt
48+
python setup.py develop
49+
50+
# Install node and npm dependencies
51+
nvm install 6.11.4
52+
nvm use 6.11.4
53+
cd $TRAVIS_BUILD_DIR/src/smif/app && npm install
54+
cd $TRAVIS_BUILD_DIR

docs/conf.py

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is execfile()d with the current directory set to its containing dir.
4-
#
4+
5+
# To run the docs build directly, generate module index:
6+
# rm -r docs/api ; sphinx-apidoc -f -M -o docs/api smif
7+
# Then build docs:
8+
# rm -r docs/_build ; sphinx-build -b html docs docs/_build/html
9+
510
# Note that not all possible configuration values are present in this
611
# autogenerated file.
712
#
@@ -24,7 +29,6 @@
2429
import os
2530
import sys
2631

27-
# from sphinx import apidoc
2832
import better_apidoc
2933

3034
# add these directories to sys.path here. If the directory is relative to the
@@ -35,9 +39,14 @@
3539
__location__ = os.path.join(os.getcwd(), os.path.dirname(
3640
inspect.getfile(inspect.currentframe())))
3741

38-
output_dir = os.path.join(__location__, "../docs/api")
39-
module_dir = os.path.join(__location__, "../smif")
40-
templates_dir = os.path.join(__location__, "../docs/_templates")
42+
# If extensions (or modules to document with autodoc) are in another directory,
43+
# add these directories to sys.path here. If the directory is relative to the
44+
# documentation root, use os.path.abspath to make it absolute, like shown here.
45+
sys.path.insert(0, os.path.join(__location__, '../src'))
46+
47+
output_dir = os.path.join(__location__, "api")
48+
module_dir = os.path.join(__location__, "../src/smif")
49+
templates_dir = os.path.join(__location__, "_templates")
4150

4251
better_apidoc.main([
4352
'better-apidoc',

requirements.txt

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
# Add your requirements here like:
2-
numpy
3-
pyyaml>=3.12
4-
networkx~=1.11
5-
python-dateutil==2.6.0
6-
isodate
1+
# Add your pinned requirements so that they can be easily installed with:
2+
# pip install -r requirements.txt
3+
# Remember to also add them in setup.cfg and environment.yml but unpinned.
74
fiona>=1.7
8-
shapely>=1.3
5+
Flask>=0.12
6+
isodate>=0.6
7+
networkx>=1.11
8+
numpy>=1.11
9+
Pint>=0.8
10+
python-dateutil>=2.6
11+
pyyaml>=3.12
912
Rtree>=0.7
10-
Pint==0.8.1
11-
Flask==0.12.2
12-
scikit-optimize==0.3
13+
scikit-optimize>=0.3
14+
shapely>=1.3

0 commit comments

Comments
 (0)