Usage

To use Private_swedish_mind in a project:

import private_swedish_mind

After cloning code from the GitHub the codebase should look like:

 ❯ tree -L 2
├── Untitled.ipynb
├── marina_tracks.ipynb
└── private_swedish_mind            // package directory
    ├── AUTHORS.rst
    ├── CONTRIBUTING.rst
    ├── HISTORY.rst
    ├── LICENSE
    ├── MANIFEST.in
    ├── Makefile
    ├── README.rst
    ├── docs                        // documentation folder
    ├── hist.png
    ├── private_swedish_mind        // directory with package code
    ├── requirements.txt
    ├── requirements_dev.txt
    ├── setup.cfg
    ├── setup.py
    ├── tests                       // tests
    └── tox.ini

Next, create the Python virtual env:

$ python3 -m venv  private_mind

This will create the virtual environment for the package. Activate it and check you are within the venv.

$ source private_mind/bin/activate
$ which python

The output should point to the XYZ/private_mind//bin/python

Install packages needed:

pip3  install -r requirements.txt