Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Latest commit

 

History

History
38 lines (22 loc) · 658 Bytes

installation.rst

File metadata and controls

38 lines (22 loc) · 658 Bytes

Installation

A minimal install without database support can be performed with the following:

pip install flask-generic-views

Optional packages

To avoid excessive dependencies some of the dependencies are broken out into setup tools "extra" feature.

You can safely mix multiple of the following in your requirements.txt.

SQLAlchemy

To install flask-generic-views with SQLAlchemy support use the following:

pip install flask-generic-views[sqlalchemy]

All

To install flask-generic-views with all optional dependencies use the following:

pip install flask-generic-views[all]