/python-template

Template for python projects

Primary LanguagePythonApache License 2.0Apache-2.0

Python template

Travis status Codecov status Apache license

This repository contains a template for starting Python projects.


HOW TO USE THE PACKAGE

The package is currently not distributed anywhere.

You can clone the repository and do the following:

  1. Create virtual environment:
$ cd <project-home>
$ python3 -m venv .env
  1. Activate virtual environment
$ source .env/bin/activate
  1. Update the pip distribution (to avoid potential issues)
$ pip install --upgrade pip
  1. Install package for testing in the virtual environment
$ python3 setup.py develop
  1. Import the package and use it!

DEPENDENCIES

Insert your dependencies here. The main package dependencies are numpy, scikit-learn, etc. .