|
12 | 12 | # |
13 | 13 | import os |
14 | 14 | import sys |
15 | | -sys.path.insert(0, os.path.abspath('..')) |
16 | | -sys.path.insert(0, os.path.abspath('../delphi_epidata')) |
| 15 | + |
| 16 | +sys.path.insert(0, os.path.abspath("..")) |
| 17 | +sys.path.insert(0, os.path.abspath("../epidatpy")) |
17 | 18 |
|
18 | 19 | # -- Project information ----------------------------------------------------- |
19 | 20 |
|
20 | | -project = 'Delphi Epidata API client' |
21 | | -copyright = '2021, Delphi research group' # pylint: disable=redefined-builtin |
22 | | -author = 'Delphi research group' |
| 21 | +project = "Delphi Epidata API client" |
| 22 | +copyright = "2021, Delphi research group" # pylint: disable=redefined-builtin |
| 23 | +author = "Delphi research group" |
23 | 24 |
|
24 | 25 | # The full version, including alpha/beta/rc tags |
25 | | -release = '1.0.0' |
| 26 | +release = "1.0.0" |
26 | 27 |
|
27 | 28 |
|
28 | 29 | # -- General configuration --------------------------------------------------- |
|
31 | 32 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
32 | 33 | # ones. |
33 | 34 | extensions = [ |
34 | | - 'sphinx.ext.autodoc', |
35 | | - 'sphinx_autodoc_typehints', |
| 35 | + "sphinx.ext.autodoc", |
| 36 | + "sphinx_autodoc_typehints", |
36 | 37 | # 'matplotlib.sphinxext.plot_directive' |
37 | 38 | ] |
38 | 39 |
|
39 | 40 | # Add any paths that contain templates here, relative to this directory. |
40 | | -templates_path = ['_templates'] |
| 41 | +templates_path = ["_templates"] |
41 | 42 |
|
42 | 43 | # List of patterns, relative to source directory, that match files and |
43 | 44 | # directories to ignore when looking for source files. |
44 | 45 | # This pattern also affects html_static_path and html_extra_path. |
45 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 46 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
46 | 47 |
|
47 | 48 | add_module_names = False |
48 | | -autoclass_content = 'class' |
49 | | -autodoc_typehints = 'description' |
| 49 | +autoclass_content = "class" |
| 50 | +autodoc_typehints = "description" |
50 | 51 |
|
51 | 52 | # -- Options for HTML output ------------------------------------------------- |
52 | 53 |
|
53 | 54 | # The theme to use for HTML and HTML Help pages. See the documentation for |
54 | 55 | # a list of builtin themes. |
55 | 56 | # |
56 | | -html_theme = 'alabaster' |
| 57 | +html_theme = "alabaster" |
57 | 58 |
|
58 | 59 | # Add any paths that contain custom static files (such as style sheets) here, |
59 | 60 | # relative to this directory. They are copied after the builtin static files, |
|
63 | 64 | html_theme_options = { |
64 | 65 | "extra_nav_links": { |
65 | 66 | "Delphi group": "https://delphi.cmu.edu/", |
66 | | - "Delphi Epidata API": "https://cmu-delphi.github.io/delphi-epidata" |
| 67 | + "Delphi Epidata API": "https://cmu-delphi.github.io/delphi-epidata", |
67 | 68 | } |
68 | 69 | } |
69 | 70 |
|
|
0 commit comments