Developpers

If you want to contribute to the project, here you can find some guidelines

Building and installing the python package

python3 -m build # build the wheel
pip install ./dist/GeoNLPlify-0.0.1-py3-none-any.whl # install the package
python3 -c "from geonlplify import download_simplemaps_data; download_simplemaps_data()" # download simplemaps data
python -m spacy download en_core_web_trf # download spacy model

Uninstall the python package

pip uninstall geonlplify
rm -r [your_site_package]/geonlplify/simplempas

Push package to pypi

python3 -m build
python3 -m twine upload dist/*