Skip to content

Commit

Permalink
Issue #289: try fix readthedocs autodoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mathpluscode committed Aug 20, 2020
1 parent 9f7fb04 commit e6224a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,6 @@

# tabs
sphinx_tabs_valid_builders = ["linkcheck"]

# mock imports
autodoc_mock_imports = ["tensorflow"]
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup
from setuptools import find_packages, setup

with open("requirements.txt") as f:
requirements = f.read().splitlines()

setup(
name="DeepReg",
name="deepreg",
version="0.0.1",
description="Registration with Deep Learning",
author="DeepReg",
packages=["deepreg"],
packages=find_packages(),
zip_safe=False,
install_requires=requirements,
entry_points={
Expand Down

0 comments on commit e6224a8

Please sign in to comment.