8
8
9
9
import os
10
10
import sys
11
+
11
12
sys .path .insert (0 , os .path .abspath ("../localstack-sdk-python/localstack" ))
12
13
13
14
14
15
def _get_version () -> str :
15
- with open (os .path .abspath ("../VERSION" ), 'r' ) as f :
16
+ with open (os .path .abspath ("../VERSION" ), "r" ) as f :
16
17
version = f .read ()
17
18
return version
18
19
19
20
20
- project = ' LocalStack Python SDK'
21
- copyright = ' 2024, LocalStack Team'
22
- author = ' LocalStack Team'
21
+ project = " LocalStack Python SDK"
22
+ copyright = " 2024, LocalStack Team"
23
+ author = " LocalStack Team"
23
24
release = _get_version ()
24
25
25
26
# -- General configuration ---------------------------------------------------
@@ -28,31 +29,31 @@ def _get_version() -> str:
28
29
# enable auto-doc extension
29
30
extensions = ["sphinx.ext.autodoc" ]
30
31
31
- templates_path = [' _templates' ]
32
- exclude_patterns = [' _build' , ' Thumbs.db' , ' .DS_Store' ]
32
+ templates_path = [" _templates" ]
33
+ exclude_patterns = [" _build" , " Thumbs.db" , " .DS_Store" ]
33
34
34
35
35
36
# -- Options for HTML output -------------------------------------------------
36
37
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
37
38
38
- html_theme = ' alabaster'
39
- html_static_path = [' _static' ]
39
+ html_theme = " alabaster"
40
+ html_static_path = [" _static" ]
40
41
41
42
html_sidebars = {
42
- '**' : [
43
- ' about.html' ,
44
- ' searchfield.html' ,
45
- ' navigation.html' ,
43
+ "**" : [
44
+ " about.html" ,
45
+ " searchfield.html" ,
46
+ " navigation.html" ,
46
47
]
47
48
}
48
49
49
50
html_theme_options = {
50
- ' extra_nav_links' : {
51
- ' Source' : ' https://github.com/localstack/localstack-sdk-python' ,
52
- ' Issues' : ' https://github.com/localstack/localstack-sdk-python/issues' ,
53
- ' PyPI' : ' https://pypi.org/project/localstack-sdk-python/' ,
51
+ " extra_nav_links" : {
52
+ " Source" : " https://github.com/localstack/localstack-sdk-python" ,
53
+ " Issues" : " https://github.com/localstack/localstack-sdk-python/issues" ,
54
+ " PyPI" : " https://pypi.org/project/localstack-sdk-python/" ,
54
55
},
55
- ' description' : ' Python SDK to interact with LocalStack developer endpoints' ,
56
- ' github_user' : ' localstack' ,
57
- ' github_repo' : ' localstack-sdk-python'
56
+ " description" : " Python SDK to interact with LocalStack developer endpoints" ,
57
+ " github_user" : " localstack" ,
58
+ " github_repo" : " localstack-sdk-python" ,
58
59
}
0 commit comments