File tree 2 files changed +21
-4
lines changed
2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 18
18
# -- Project information -----------------------------------------------------
19
19
20
20
project = "nexb-skeleton"
21
- copyright = "nexb Inc."
22
- author = "nexb Inc. "
21
+ copyright = "nexB Inc. and others ."
22
+ author = "AboutCode.org authors and contributors "
23
23
24
24
25
25
# -- General configuration ---------------------------------------------------
26
26
27
27
# Add any Sphinx extension module names here, as strings. They can be
28
28
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
29
29
# ones.
30
- extensions = []
30
+ extensions = [
31
+ 'sphinx.ext.intersphinx' ,
32
+ ]
33
+
34
+ # This points to aboutcode.readthedocs.io
35
+ # In case of "undefined label" ERRORS check docs on intersphinx to troubleshoot
36
+ # Link was created at commit - https://github.com/nexB/aboutcode/commit/faea9fcf3248f8f198844fe34d43833224ac4a83
37
+
38
+ intersphinx_mapping = {
39
+ 'aboutcode' : ('https://aboutcode.readthedocs.io/en/latest/' , None ),
40
+ 'scancode-workbench' : ('https://scancode-workbench.readthedocs.io/en/develop/' , None ),
41
+ }
42
+
31
43
32
44
# Add any paths that contain templates here, relative to this directory.
33
45
templates_path = ["_templates" ]
50
62
# so a file named "default.css" will overwrite the builtin "default.css".
51
63
html_static_path = ["_static" ]
52
64
65
+ master_doc = 'index'
66
+
53
67
html_context = {
54
68
"css_files" : [
55
69
"_static/theme_overrides.css" , # override wide tables in RTD theme
Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ norecursedirs = [
35
35
" tmp" ,
36
36
" venv" ,
37
37
" tests/data" ,
38
- " .eggs"
38
+ " .eggs" ,
39
+ " src/*/data" ,
40
+ " tests/*/data"
39
41
]
40
42
41
43
python_files = " *.py"
@@ -46,5 +48,6 @@ python_functions = "test"
46
48
addopts = [
47
49
" -rfExXw" ,
48
50
" --strict-markers" ,
51
+ " --ignore setup.py" ,
49
52
" --doctest-modules"
50
53
]
You can’t perform that action at this time.
0 commit comments