@@ -53,10 +53,10 @@ def get_project_deps() -> list[Dependency]:
5353 This does not include development dependencies, e.g. not those in the
5454 dependency-groups section, not extras/optional dependencies, not build dependencies.
5555
56- Usually this is just the dependencies in the `` project.dependencies` ` section
57- of the `` pyproject.toml` ` file. When the poetry backend is active, also
58- reads from `` [tool.poetry.dependencies]`` . Also merges from `` setup.cfg` `
59- `` [options] install_requires` ` if that file is present.
56+ Usually this is just the dependencies in the `project.dependencies` section
57+ of the `pyproject.toml` file. When the poetry backend is active, also
58+ reads from `[tool.poetry.dependencies]`. Also merges from `setup.cfg`
59+ `[options] install_requires` if that file is present.
6060 """
6161 try :
6262 deps = _get_project_deps ()
@@ -75,9 +75,9 @@ def get_project_deps() -> list[Dependency]:
7575def get_dep_groups () -> dict [str , list [Dependency ]]:
7676 """Get all dependency groups from pyproject.toml.
7777
78- Reads from `` [dependency-groups]` ` (PEP 735). When the poetry backend
79- is active, also reads from `` [tool.poetry.group.*.dependencies]` `. Also
80- merges from `` setup.cfg`` `` [options.extras_require]` ` if that file is present.
78+ Reads from `[dependency-groups]` (PEP 735). When the poetry backend
79+ is active, also reads from `[tool.poetry.group.*.dependencies]`. Also
80+ merges from `setup.cfg` ` [options.extras_require]` if that file is present.
8181 """
8282 try :
8383 groups = _get_dep_groups ()
0 commit comments