From 15909642f29fee228f8d64ab10b6dd22f54bc68a Mon Sep 17 00:00:00 2001 From: Matt Dorn Date: Sun, 6 May 2018 19:06:11 -0500 Subject: [PATCH] Add requirements to setup.py --- docs/conf.py | 2 +- setup.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 5c37165..448b062 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -84,7 +84,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a # theme further. For a list of options available for each theme, see the diff --git a/setup.py b/setup.py index 93366d4..411c3e9 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,13 @@ history = history_file.read() # requirements = ['Click>=6.0', ] -requirements = [] +requirements = [ + 'future', + 'httplib2>=0.9', + 'lxml>=3.4,<=4', + 'oauth2>=1.9,<2', + 'requests>=2.7,<3', +] setup_requirements = ['pytest-runner', ]