Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #10 - Publish AIT GUI docs to ReadTheDocs #13

Merged
merged 1 commit into from
Apr 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
import sys
import os

# BLISS_CONFIG is set to fake location so that the build on ReadTheDocs complete.
if os.environ.get('BLISS_CONFIG', None) is None:
os.environ['BLISS_CONFIG'] = "config.yml"

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down
7 changes: 7 additions & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
formats:
- none
python:
pip_install: true
extra_requirements:
- docs
- tests
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,9 @@ def run(self):
include_package_data = True,

install_requires = ['bliss-core>=0.35.0'],
dependency_links = [
'https://bliss.jpl.nasa.gov/pypi/simple/bliss-core/'
],
extras_require = {
'docs': [
'Sphinx',
'Sphinx==1.7.2',
'sphinx_rtd_theme',
'sphinxcontrib-httpdomain'
]
Expand Down