|
12 | 12 | # |
13 | 13 | import os |
14 | 14 | import sys |
15 | | -sys.path.insert(0, os.path.abspath('..')) |
16 | 15 |
|
| 16 | +sys.path.insert(0, os.path.abspath("..")) |
| 17 | +sys.path.append(os.path.dirname(__file__)) |
17 | 18 |
|
18 | 19 | # -- Project information ----------------------------------------------------- |
19 | 20 |
|
20 | | -project = 'DoubletDetection' |
21 | | -copyright = '2019, Adam Gayoso and Jonathan Shor' |
22 | | -author = 'Adam Gayoso and Jonathan Shor' |
| 21 | +project = "DoubletDetection" |
| 22 | +copyright = "2019, Adam Gayoso and Jonathan Shor" |
| 23 | +author = "Adam Gayoso and Jonathan Shor" |
23 | 24 |
|
24 | 25 | # The full version, including alpha/beta/rc tags |
25 | | -release = '2.4.0' |
| 26 | +release = "2.5.0" |
26 | 27 |
|
27 | 28 |
|
28 | 29 | # -- General configuration --------------------------------------------------- |
29 | 30 |
|
30 | 31 | # Add any Sphinx extension module names here, as strings. They can be |
31 | 32 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
32 | 33 | # ones. |
33 | | -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode', 'sphinx.ext.napoleon', 'm2r'] |
| 34 | +extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode", "sphinx.ext.napoleon", "m2r"] |
34 | 35 |
|
35 | 36 | # Add any paths that contain templates here, relative to this directory. |
36 | | -templates_path = ['_templates'] |
| 37 | +templates_path = ["_templates"] |
37 | 38 |
|
38 | 39 | # List of patterns, relative to source directory, that match files and |
39 | 40 | # directories to ignore when looking for source files. |
40 | 41 | # This pattern also affects html_static_path and html_extra_path. |
41 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 42 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
42 | 43 |
|
43 | 44 |
|
44 | 45 | # -- Options for HTML output ------------------------------------------------- |
45 | 46 |
|
46 | 47 | # The theme to use for HTML and HTML Help pages. See the documentation for |
47 | 48 | # a list of builtin themes. |
48 | 49 | # |
49 | | -html_theme = 'sphinx_rtd_theme' |
| 50 | +html_theme = "sphinx_rtd_theme" |
50 | 51 |
|
51 | 52 | # Add any paths that contain custom static files (such as style sheets) here, |
52 | 53 | # relative to this directory. They are copied after the builtin static files, |
53 | 54 | # so a file named "default.css" will overwrite the builtin "default.css". |
54 | | -html_static_path = ['_static'] |
| 55 | +html_static_path = ["_static"] |
| 56 | + |
| 57 | +master_doc = "index" |
0 commit comments