|
4 | 4 | from importlib import metadata |
5 | 5 |
|
6 | 6 | sys.path.insert(0, os.path.abspath("..")) |
7 | | -sys.path.insert(0, os.path.abspath("../scim_cli")) |
| 7 | +sys.path.insert(0, os.path.abspath("../scim2_cli")) |
8 | 8 |
|
9 | 9 | # -- General configuration ------------------------------------------------ |
10 | 10 |
|
|
21 | 21 |
|
22 | 22 | templates_path = ["_templates"] |
23 | 23 | master_doc = "index" |
24 | | -project = "scim-cli" |
| 24 | +project = "scim2-cli" |
25 | 25 | year = datetime.datetime.now().strftime("%Y") |
26 | 26 | copyright = f"{year}, Yaal Coop" |
27 | 27 | author = "Yaal Coop" |
|
31 | 31 | ".md": "markdown", |
32 | 32 | } |
33 | 33 |
|
34 | | -version = metadata.version("scim_cli") |
| 34 | +version = metadata.version("scim2_cli") |
35 | 35 | language = "en" |
36 | 36 | exclude_patterns = [] |
37 | 37 | pygments_style = "sphinx" |
|
46 | 46 |
|
47 | 47 | html_theme = "shibuya" |
48 | 48 | # html_static_path = ["_static"] |
49 | | -html_baseurl = "https://scim-cli.readthedocs.io" |
| 49 | +html_baseurl = "https://scim2-cli.readthedocs.io" |
50 | 50 | html_theme_options = { |
51 | 51 | "globaltoc_expand_depth": 3, |
52 | 52 | "accent_color": "orange", |
53 | | - "github_url": "https://github.com/yaal-coop/scim-cli", |
| 53 | + "github_url": "https://github.com/yaal-coop/scim2-cli", |
54 | 54 | "mastodon_url": "https://toot.aquilenet.fr/@yaal", |
55 | 55 | "nav_links": [ |
56 | 56 | { |
|
73 | 73 | }, |
74 | 74 | {"title": "pydantic-scim2", "url": "https://pydantic-scim2.readthedocs.io"}, |
75 | 75 | { |
76 | | - "title": "httpx-scim-client", |
77 | | - "url": "https://httpx-scim-client.readthedocs.io", |
| 76 | + "title": "httpx-scim2-client", |
| 77 | + "url": "https://httpx-scim2-client.readthedocs.io", |
78 | 78 | }, |
79 | 79 | ], |
80 | 80 | } |
81 | 81 |
|
82 | 82 | # -- Options for manual page output --------------------------------------- |
83 | 83 |
|
84 | | -man_pages = [(master_doc, "scim-cli", "scim-cli Documentation", [author], 1)] |
| 84 | +man_pages = [(master_doc, "scim2-cli", "scim2-cli Documentation", [author], 1)] |
85 | 85 |
|
86 | 86 | # -- Options for Texinfo output ------------------------------------------- |
87 | 87 |
|
88 | 88 | texinfo_documents = [ |
89 | 89 | ( |
90 | 90 | master_doc, |
91 | | - "scim_cli", |
92 | | - "scim_cli Documentation", |
| 91 | + "scim2_cli", |
| 92 | + "scim2_cli Documentation", |
93 | 93 | author, |
94 | | - "scim_cli", |
| 94 | + "scim2_cli", |
95 | 95 | "One line description of project.", |
96 | 96 | "Miscellaneous", |
97 | 97 | ) |
|
0 commit comments