File tree 2 files changed +3
-3
lines changed
{{cookiecutter.github_project_name}}
{{cookiecutter.python_package_name}}
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
#
13
13
import os
14
14
import sys
15
+
15
16
sys .path .insert (0 , os .path .abspath ('../{{ cookiecutter.python_package_name }}' ))
16
17
17
18
37
38
"numpydoc" ,
38
39
'sphinx.ext.autodoc' ,
39
40
'sphinx.ext.inheritance_diagram' ,
40
- 'autoapi.sphinx'
41
+ 'autoapi.sphinx' ,
41
42
]
42
43
43
44
sphinx_gallery_conf = {
Original file line number Diff line number Diff line change 4
4
# Copyright (c) {{ cookiecutter.author_name }}.
5
5
# Distributed under the terms of the Modified BSD License.
6
6
7
- # Must import __version__ first to avoid errors importing this file during the build process.
7
+ # Must import __version__ first to avoid errors importing this file during the build process.
8
8
# See https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
9
9
from ._version import __version__
10
10
11
11
from .example import example_function
12
-
You can’t perform that action at this time.
0 commit comments