Development

The OWSLib wiki is located at https://github.com/geopython/OWSLib/wiki

The OWSLib source code is available at https://github.com/geopython/OWSLib

You can find out about software metrics at the OWSLib OpenHub page at https://www.openhub.net/p/OWSLib.

Testing

Create a virtual environment and install OWSLib with the development dependencies:

python3 -m venv owslibenv
source owslibenv/bin/activate

git clone https://github.com/geopython/OWSLib.git
cd OWSLib

pip install -e ".[dev]"

Run the test suite:

python3 -m pytest

Run linting:

flake8 owslib/

Documentation

To build the documentation locally:

pip install -e ".[docs]"
cd docs && make html

Release

To install the release tooling:

pip install -e ".[release]"