array-api-extra 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ # GitHub syntax highlighting
2
+ pixi.lock linguist-language=YAML linguist-generated=true
@@ -0,0 +1,11 @@
1
+ version: 2
2
+ updates:
3
+ # Maintain dependencies for GitHub Actions
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
8
+ groups:
9
+ actions:
10
+ patterns:
11
+ - "*"
@@ -0,0 +1,44 @@
1
+ name: CD
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ pull_request:
6
+ push:
7
+ branches:
8
+ - main
9
+ release:
10
+ types:
11
+ - published
12
+
13
+ jobs:
14
+ dist:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
+
21
+ - uses: hynek/build-and-inspect-python-package@v2
22
+
23
+ publish:
24
+ needs: [dist]
25
+ environment: pypi
26
+ permissions:
27
+ id-token: write
28
+ attestations: write
29
+ contents: read
30
+ runs-on: ubuntu-latest
31
+ if: github.event_name == 'release' && github.event.action == 'published'
32
+
33
+ steps:
34
+ - uses: actions/download-artifact@v4
35
+ with:
36
+ name: Packages
37
+ path: dist
38
+
39
+ - name: Generate artifact attestation for sdist and wheel
40
+ uses: actions/attest-build-provenance@v1.4.3
41
+ with:
42
+ subject-path: "dist/*"
43
+
44
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,69 @@
1
+ name: CI
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ pull_request:
6
+ push:
7
+ branches:
8
+ - main
9
+
10
+ concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
+
14
+ env:
15
+ # Many color libraries just need this to be set to any value, but at least
16
+ # one distinguishes color depth, where "3" -> "256-bit color".
17
+ FORCE_COLOR: 3
18
+
19
+ jobs:
20
+ pre-commit-and-lint:
21
+ name: Format
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ with:
26
+ fetch-depth: 0
27
+ - uses: actions/setup-python@v5
28
+ with:
29
+ python-version: "3.x"
30
+ - uses: pre-commit/action@v3.0.1
31
+ with:
32
+ extra_args: --hook-stage manual --all-files
33
+ - uses: prefix-dev/setup-pixi@v0.8.1
34
+ with:
35
+ pixi-version: v0.30.0
36
+ cache: true
37
+ - name: Run Pylint & Mypy
38
+ run: |
39
+ pixi run -e lint pylint
40
+ pixi run -e lint mypy
41
+
42
+ checks:
43
+ name: Check ${{ matrix.environment }}
44
+ runs-on: ${{ matrix.runs-on }}
45
+ needs: [pre-commit-and-lint]
46
+ strategy:
47
+ fail-fast: false
48
+ matrix:
49
+ environment: [ci-py309, ci-py312]
50
+ runs-on: [ubuntu-latest]
51
+
52
+ steps:
53
+ - uses: actions/checkout@v4
54
+ with:
55
+ fetch-depth: 0
56
+
57
+ - uses: prefix-dev/setup-pixi@v0.8.1
58
+ with:
59
+ pixi-version: v0.30.0
60
+ cache: true
61
+ environments: ${{ matrix.environment }}
62
+
63
+ - name: Test package
64
+ run: pixi run -e ${{ matrix.environment }} test-ci
65
+
66
+ # - name: Upload coverage report
67
+ # uses: codecov/codecov-action@v4.5.0
68
+ # with:
69
+ # token: ${{ secrets.CODECOV_TOKEN }}
@@ -0,0 +1,162 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+ docs/generated/
74
+
75
+ # PyBuilder
76
+ .pybuilder/
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ # For a library or package, you might want to ignore these files since the code is
88
+ # intended to run in multiple environments; otherwise, check them in:
89
+ # .python-version
90
+
91
+ # pipenv
92
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
94
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
95
+ # install all needed dependencies.
96
+ #Pipfile.lock
97
+
98
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
99
+ __pypackages__/
100
+
101
+ # Celery stuff
102
+ celerybeat-schedule
103
+ celerybeat.pid
104
+
105
+ # SageMath parsed files
106
+ *.sage.py
107
+
108
+ # Environments
109
+ .env
110
+ .venv
111
+ env/
112
+ venv/
113
+ ENV/
114
+ env.bak/
115
+ venv.bak/
116
+
117
+ # Spyder project settings
118
+ .spyderproject
119
+ .spyproject
120
+
121
+ # Rope project settings
122
+ .ropeproject
123
+
124
+ # mkdocs documentation
125
+ /site
126
+
127
+ # mypy
128
+ .mypy_cache/
129
+ .dmypy.json
130
+ dmypy.json
131
+
132
+ # Pyre type checker
133
+ .pyre/
134
+
135
+ # pytype static type analyzer
136
+ .pytype/
137
+
138
+ # Cython debug symbols
139
+ cython_debug/
140
+
141
+ # setuptools_scm
142
+ src/*/_version.py
143
+
144
+
145
+ # ruff
146
+ .ruff_cache/
147
+
148
+ # OS specific stuff
149
+ .DS_Store
150
+ .DS_Store?
151
+ ._*
152
+ .Spotlight-V100
153
+ .Trashes
154
+ ehthumbs.db
155
+ Thumbs.db
156
+
157
+ # Common editor files
158
+ *~
159
+ *.swp
160
+ # pixi environments
161
+ .pixi
162
+ *.egg-info
@@ -0,0 +1,81 @@
1
+ ci:
2
+ autoupdate_commit_msg: "chore: update pre-commit hooks"
3
+ autofix_commit_msg: "style: pre-commit fixes"
4
+
5
+ exclude: ^.cruft.json|.copier-answers.yml$
6
+
7
+ repos:
8
+ - repo: https://github.com/adamchainz/blacken-docs
9
+ rev: "1.18.0"
10
+ hooks:
11
+ - id: blacken-docs
12
+ additional_dependencies: [black==24.*]
13
+
14
+ - repo: https://github.com/pre-commit/pre-commit-hooks
15
+ rev: "v4.6.0"
16
+ hooks:
17
+ - id: check-added-large-files
18
+ - id: check-case-conflict
19
+ - id: check-merge-conflict
20
+ - id: check-symlinks
21
+ - id: check-yaml
22
+ - id: debug-statements
23
+ - id: end-of-file-fixer
24
+ - id: mixed-line-ending
25
+ - id: name-tests-test
26
+ args: ["--pytest-test-first"]
27
+ - id: requirements-txt-fixer
28
+ - id: trailing-whitespace
29
+
30
+ - repo: https://github.com/pre-commit/pygrep-hooks
31
+ rev: "v1.10.0"
32
+ hooks:
33
+ - id: rst-backticks
34
+ - id: rst-directive-colons
35
+ - id: rst-inline-touching-normal
36
+
37
+ - repo: https://github.com/rbubley/mirrors-prettier
38
+ rev: "v3.3.3"
39
+ hooks:
40
+ - id: prettier
41
+ types_or: [yaml, markdown, html, css, scss, javascript, json]
42
+ args: [--prose-wrap=always]
43
+
44
+ - repo: https://github.com/astral-sh/ruff-pre-commit
45
+ rev: "v0.6.1"
46
+ hooks:
47
+ - id: ruff
48
+ args: ["--fix", "--show-fixes"]
49
+ - id: ruff-format
50
+
51
+ - repo: https://github.com/codespell-project/codespell
52
+ rev: "v2.3.0"
53
+ hooks:
54
+ - id: codespell
55
+ exclude: pixi.lock
56
+
57
+ - repo: https://github.com/shellcheck-py/shellcheck-py
58
+ rev: "v0.10.0.1"
59
+ hooks:
60
+ - id: shellcheck
61
+
62
+ - repo: local
63
+ hooks:
64
+ - id: disallow-caps
65
+ name: Disallow improper capitalization
66
+ language: pygrep
67
+ entry: PyBind|Numpy|Cmake|CCache|Github|PyTest
68
+ exclude: .pre-commit-config.yaml
69
+
70
+ - repo: https://github.com/abravalheri/validate-pyproject
71
+ rev: "v0.19"
72
+ hooks:
73
+ - id: validate-pyproject
74
+ additional_dependencies: ["validate-pyproject-schema-store[all]"]
75
+
76
+ - repo: https://github.com/python-jsonschema/check-jsonschema
77
+ rev: "0.29.1"
78
+ hooks:
79
+ - id: check-dependabot
80
+ - id: check-github-workflows
81
+ - id: check-readthedocs
@@ -0,0 +1,24 @@
1
+ # Read the Docs configuration file
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ version: 2
5
+
6
+ build:
7
+ os: ubuntu-22.04
8
+ tools:
9
+ python: "3.12"
10
+ commands:
11
+ - asdf plugin add uv
12
+ - asdf install uv latest
13
+ - asdf global uv latest
14
+ - uv venv
15
+ - uv pip install .[docs]
16
+ - .venv/bin/python -m sphinx -T -b html -d docs/_build/doctrees -D
17
+ language=en docs $READTHEDOCS_OUTPUT/html
18
+
19
+ sphinx:
20
+ configuration: docs/conf.py
21
+
22
+ python:
23
+ install:
24
+ - requirements: docs/requirements.txt
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Consortium for Python Data API Standards
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.3
2
+ Name: array-api-extra
3
+ Version: 0.1.0
4
+ Summary: Extra array functions that aren't in the array API standard, implemented in terms of the standard.
5
+ Project-URL: Homepage, https://github.com/data-apis/array-api-extra
6
+ Project-URL: Bug Tracker, https://github.com/data-apis/array-api-extra/issues
7
+ Project-URL: Discussions, https://github.com/data-apis/array-api-extra/discussions
8
+ Project-URL: Changelog, https://github.com/data-apis/array-api-extra/releases
9
+ Author: Open Source Contributors
10
+ Author-email: Lucas Colley <lucas.colley8@gmail.com>
11
+ License: MIT License
12
+
13
+ Copyright (c) 2024 Consortium for Python Data API Standards
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy
16
+ of this software and associated documentation files (the "Software"), to deal
17
+ in the Software without restriction, including without limitation the rights
18
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19
+ copies of the Software, and to permit persons to whom the Software is
20
+ furnished to do so, subject to the following conditions:
21
+
22
+ The above copyright notice and this permission notice shall be included in all
23
+ copies or substantial portions of the Software.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31
+ SOFTWARE.
32
+ License-File: LICENSE
33
+ Classifier: Intended Audience :: Developers
34
+ Classifier: License :: OSI Approved :: MIT License
35
+ Classifier: Operating System :: OS Independent
36
+ Classifier: Programming Language :: Python
37
+ Classifier: Programming Language :: Python :: 3
38
+ Classifier: Programming Language :: Python :: 3 :: Only
39
+ Classifier: Programming Language :: Python :: 3.9
40
+ Classifier: Programming Language :: Python :: 3.10
41
+ Classifier: Programming Language :: Python :: 3.11
42
+ Classifier: Programming Language :: Python :: 3.12
43
+ Classifier: Typing :: Typed
44
+ Requires-Python: >=3.9
45
+ Provides-Extra: docs
46
+ Requires-Dist: furo>=2023.08.17; extra == 'docs'
47
+ Requires-Dist: myst-parser>=0.13; extra == 'docs'
48
+ Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
49
+ Requires-Dist: sphinx-copybutton; extra == 'docs'
50
+ Requires-Dist: sphinx>=7.0; extra == 'docs'
51
+ Provides-Extra: test
52
+ Requires-Dist: array-api-strict; extra == 'test'
53
+ Requires-Dist: numpy; extra == 'test'
54
+ Requires-Dist: pytest-cov>=3; extra == 'test'
55
+ Requires-Dist: pytest>=6; extra == 'test'
56
+ Description-Content-Type: text/markdown
57
+
58
+ # array-api-extra
59
+
60
+ [![Actions Status][actions-badge]][actions-link]
61
+ [![Documentation Status][rtd-badge]][rtd-link]
62
+ [![Pixi Badge](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json)](https://pixi.sh)
63
+
64
+ [![PyPI version][pypi-version]][pypi-link]
65
+ [![Conda-Forge][conda-badge]][conda-link]
66
+ [![PyPI platforms][pypi-platforms]][pypi-link]
67
+
68
+ <!-- SPHINX-START -->
69
+
70
+ <!-- prettier-ignore-start -->
71
+ [actions-badge]: https://github.com/data-apis/array-api-extra/workflows/CI/badge.svg
72
+ [actions-link]: https://github.com/data-apis/array-api-extra/actions
73
+ [conda-badge]: https://img.shields.io/conda/vn/conda-forge/array-api-extra
74
+ [conda-link]: https://github.com/conda-forge/array-api-extra-feedstock
75
+ [github-discussions-badge]: https://img.shields.io/static/v1?label=Discussions&message=Ask&color=blue&logo=github
76
+ [github-discussions-link]: https://github.com/data-apis/array-api-extra/discussions
77
+ [pypi-link]: https://pypi.org/project/array-api-extra/
78
+ [pypi-platforms]: https://img.shields.io/pypi/pyversions/array-api-extra
79
+ [pypi-version]: https://img.shields.io/pypi/v/array-api-extra
80
+ [rtd-badge]: https://readthedocs.org/projects/array-api-extra/badge/?version=latest
81
+ [rtd-link]: https://array-api-extra.readthedocs.io/en/latest/?badge=latest
82
+
83
+ <!-- prettier-ignore-end -->
84
+
85
+ Extra array functions built on top of the array API standard.
@@ -0,0 +1,28 @@
1
+ # array-api-extra
2
+
3
+ [![Actions Status][actions-badge]][actions-link]
4
+ [![Documentation Status][rtd-badge]][rtd-link]
5
+ [![Pixi Badge](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json)](https://pixi.sh)
6
+
7
+ [![PyPI version][pypi-version]][pypi-link]
8
+ [![Conda-Forge][conda-badge]][conda-link]
9
+ [![PyPI platforms][pypi-platforms]][pypi-link]
10
+
11
+ <!-- SPHINX-START -->
12
+
13
+ <!-- prettier-ignore-start -->
14
+ [actions-badge]: https://github.com/data-apis/array-api-extra/workflows/CI/badge.svg
15
+ [actions-link]: https://github.com/data-apis/array-api-extra/actions
16
+ [conda-badge]: https://img.shields.io/conda/vn/conda-forge/array-api-extra
17
+ [conda-link]: https://github.com/conda-forge/array-api-extra-feedstock
18
+ [github-discussions-badge]: https://img.shields.io/static/v1?label=Discussions&message=Ask&color=blue&logo=github
19
+ [github-discussions-link]: https://github.com/data-apis/array-api-extra/discussions
20
+ [pypi-link]: https://pypi.org/project/array-api-extra/
21
+ [pypi-platforms]: https://img.shields.io/pypi/pyversions/array-api-extra
22
+ [pypi-version]: https://img.shields.io/pypi/v/array-api-extra
23
+ [rtd-badge]: https://readthedocs.org/projects/array-api-extra/badge/?version=latest
24
+ [rtd-link]: https://array-api-extra.readthedocs.io/en/latest/?badge=latest
25
+
26
+ <!-- prettier-ignore-end -->
27
+
28
+ Extra array functions built on top of the array API standard.
@@ -0,0 +1,10 @@
1
+ # API Reference
2
+
3
+ ```{eval-rst}
4
+ .. currentmodule:: array_api_extra
5
+ .. autosummary::
6
+ :nosignatures:
7
+ :toctree: generated
8
+
9
+ atleast_nd
10
+ ```
@@ -0,0 +1,63 @@
1
+ from __future__ import annotations
2
+
3
+ import importlib.metadata
4
+ from typing import Any
5
+
6
+ project = "array-api-extra"
7
+ version = release = importlib.metadata.version("array_api_extra")
8
+
9
+ extensions = [
10
+ "myst_parser",
11
+ "sphinx.ext.autodoc",
12
+ "sphinx.ext.autosummary",
13
+ "sphinx.ext.intersphinx",
14
+ "sphinx.ext.mathjax",
15
+ "sphinx.ext.napoleon",
16
+ "sphinx_autodoc_typehints",
17
+ "sphinx_copybutton",
18
+ ]
19
+
20
+ source_suffix = [".rst", ".md"]
21
+ exclude_patterns = [
22
+ "_build",
23
+ "**.ipynb_checkpoints",
24
+ "Thumbs.db",
25
+ ".DS_Store",
26
+ ".env",
27
+ ".venv",
28
+ ]
29
+
30
+ html_theme = "furo"
31
+
32
+ html_theme_options: dict[str, Any] = {
33
+ "footer_icons": [
34
+ {
35
+ "name": "GitHub",
36
+ "url": "https://github.com/data-apis/array-api-extra",
37
+ "html": """
38
+ <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 16 16">
39
+ <path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path>
40
+ </svg>
41
+ """,
42
+ "class": "",
43
+ },
44
+ ],
45
+ "source_repository": "https://github.com/data-apis/array-api-extra",
46
+ "source_branch": "main",
47
+ "source_directory": "docs/",
48
+ }
49
+
50
+ myst_enable_extensions = [
51
+ "colon_fence",
52
+ ]
53
+
54
+ intersphinx_mapping = {
55
+ "python": ("https://docs.python.org/3", None),
56
+ }
57
+
58
+ nitpick_ignore = [
59
+ ("py:class", "_io.StringIO"),
60
+ ("py:class", "_io.BytesIO"),
61
+ ]
62
+
63
+ always_document_param_types = True
@@ -0,0 +1,11 @@
1
+ # array-api-extra
2
+
3
+ ```{toctree}
4
+ :maxdepth: 2
5
+ :hidden:
6
+ api-reference.md
7
+ ```
8
+
9
+ ```{include} ../README.md
10
+ :start-after: <!-- SPHINX-START -->
11
+ ```
@@ -0,0 +1,5 @@
1
+ furo>=2023.08.17
2
+ myst_parser>=0.13
3
+ sphinx>=7.0
4
+ sphinx_autodoc_typehints
5
+ sphinx_copybutton