Metadata-Version: 2.1
Name: fhnw-nlp-utils
Version: 0.9.1
Summary: Utilities for NLP courses taught at FHNW.
Home-page: http://github.com/markif/fhnw-nlp-utils
Author: Fabian
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: psutil
Requires-Dist: multiprocess
Requires-Dist: wget
Requires-Dist: gdown
Requires-Dist: scikit-learn
Requires-Dist: nltk
Requires-Dist: matplotlib
Requires-Dist: wordcloud
Requires-Dist: compound-split
Requires-Dist: pyarrow
Requires-Dist: iterative-stratification

This library provides utilities for NLP courses taught at FHNW.

# Install 

This package builds on Python 3.

```bash
sudo pip install fhnw-nlp-utils
```

# Build

- Increase the version number in [setup.py](setup.py).

- Start a Docker container with the build/deploy tools:

```bash
docker run -e TZ=Europe/Zurich --name datascience-notebook --net=host -p 8888:8888 -v "$(pwd)":/home/jovyan/work -v ${HOME}/.pypirc:/home/jovyan/.pypirc -it --rm i4ds/datascience-notebook start-notebook.sh --NotebookApp.token=''
```

- Build and deploy the library to pypi:


```bash
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:

```bash
git commit -am "message"
git push
```


