This library provides utilities for NLP courses taught at FHNW.
This package builds on Python 3.
sudo pip install fhnw-nlp-utils
-
Increase the version number in setup.py.
-
Start a Docker container with the build/deploy tools:
docker run -e TZ=Europe/Zurich --name datascience-notebook --net=host -p 8888:8888 -v "$(pwd)":/home/jovyan/work -it --rm i4ds/datascience-notebook start-notebook.sh --NotebookApp.token=''
- Build and deploy the library to pypi:
docker exec -it datascience-notebook /bin/bash
cd work
rm -rf dist/*
python3 setup.py bdist_wheel
python3 -m twine upload dist/*
- Upload the latest changes to the git repository:
git commit -am "message"
git push