To contribute to this library, first checkout the code. Then create a new virtual environment:
cd pelican-to-sqlite
python -m venv venv
source venv/bin/activate
Now install the dependencies and tests:
pip install -e '.[test]'
To run the tests:
pytest
This library uses
The correct version of these libraries will be installed by pip install -e '.[test]'
- you can run pre-commit run --all-files
in the root directory to apply those formatting rules.