|
1 | 1 | from sphinx_celery import conf
|
2 | 2 |
|
3 |
| -globals().update( |
4 |
| - conf.build_config( |
5 |
| - "pytest_celery", |
6 |
| - __file__, |
7 |
| - project="pytest_celery", |
8 |
| - version_dev="1.1", |
9 |
| - version_stable="1.0", |
10 |
| - canonical_url="https://pytest-celery.readthedocs.io/", |
11 |
| - webdomain="pytest-celery.readthedocs.io", |
12 |
| - github_project="celery/pytest-celery", |
13 |
| - author="Tomer Nosrati", |
14 |
| - author_name="Tomer Nosrati", |
15 |
| - copyright="2024", |
16 |
| - publisher="Celery Project", |
17 |
| - html_logo="images/celery_512.png", |
18 |
| - html_favicon="images/favicon.ico", |
19 |
| - html_prepend_sidebars=["sidebardonations.html"], |
20 |
| - extra_extensions=[ |
21 |
| - "sphinx_click", |
22 |
| - "sphinx.ext.napoleon", |
23 |
| - "celery.contrib.sphinx", |
24 |
| - "sphinxcontrib.mermaid", |
25 |
| - ], |
26 |
| - apicheck_ignore_modules=[ |
27 |
| - r"celery.contrib.*", |
28 |
| - ], |
29 |
| - linkcheck_ignore=[ |
30 |
| - r"^http://localhost", |
31 |
| - r"^http://0.0.0.0", |
32 |
| - r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#images", |
33 |
| - r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#containers", |
34 |
| - r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#fixture-wrappers", |
35 |
| - r"https://github\.com/celery/celery/blob/main/requirements/test\.txt#L2", |
36 |
| - r"https://github\.com/celery/celery/blob/main/tox\.ini#L30", |
37 |
| - ], |
38 |
| - autodoc_mock_imports=[], |
39 |
| - ) |
| 3 | +config = conf.build_config( |
| 4 | + "pytest_celery", |
| 5 | + __file__, |
| 6 | + project="pytest_celery", |
| 7 | + version_dev="1.1", |
| 8 | + version_stable="1.0", |
| 9 | + canonical_url="https://pytest-celery.readthedocs.io/", |
| 10 | + webdomain="pytest-celery.readthedocs.io", |
| 11 | + github_project="celery/pytest-celery", |
| 12 | + author="Tomer Nosrati", |
| 13 | + author_name="Tomer Nosrati", |
| 14 | + copyright="2024", |
| 15 | + publisher="Celery Project", |
| 16 | + html_logo="images/celery_512.png", |
| 17 | + html_favicon="images/favicon.ico", |
| 18 | + html_prepend_sidebars=["sidebardonations.html"], |
| 19 | + extra_extensions=[ |
| 20 | + "sphinx_click", |
| 21 | + "sphinx.ext.napoleon", |
| 22 | + "celery.contrib.sphinx", |
| 23 | + "sphinxcontrib.mermaid", |
| 24 | + ], |
| 25 | + apicheck_ignore_modules=[ |
| 26 | + r"celery.contrib.*", |
| 27 | + ], |
| 28 | + linkcheck_ignore=[ |
| 29 | + r"^http://localhost", |
| 30 | + r"^http://0.0.0.0", |
| 31 | + r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#images", |
| 32 | + r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#containers", |
| 33 | + r"https://github\.com/Jc2k/pytest-docker-tools\?tab=readme-ov-file#fixture-wrappers", |
| 34 | + r"https://github\.com/celery/celery/blob/main/requirements/test\.txt#L2", |
| 35 | + r"https://github\.com/celery/celery/blob/main/tox\.ini#L30", |
| 36 | + ], |
| 37 | + autodoc_mock_imports=[], |
40 | 38 | )
|
41 | 39 |
|
| 40 | +del config["intersphinx_mapping"]["eventlet"] |
| 41 | + |
| 42 | +globals().update(config) |
| 43 | + |
42 | 44 | settings = {}
|
43 | 45 | ignored_settings = {}
|
44 | 46 |
|
|
0 commit comments