This repository contains a template for starting Python projects.
The package is currently not distributed anywhere.
You can clone the repository and do the following:
- Create virtual environment:
$ cd <project-home>
$ python3 -m venv .env
- Activate virtual environment
$ source .env/bin/activate
- Update the pip distribution (to avoid potential issues)
$ pip install --upgrade pip
- Install package for testing in the virtual environment
$ python3 setup.py develop
- Import the package and use it!
Insert your dependencies here. The main package dependencies are numpy, scikit-learn, etc. .