pep518 read¶
These PEP 518 (aka pyproject.toml) functions are not app specific
These functions are lifted from the black project. With minor changes:
Removed black specific version handling
Added sphinx style code documentation
Removed py38 styles typing like: Tuple or Dict
Import Sequence correctly
Note
Flake8 config files handling
Flake8 load_config function
Monkeypatch of configparser to support pyproject.toml, ConfigParserTomlMixin
Apply monkeypatch FixFilenames.apply
Module private variables
- drain_swamp.pep518_read.__all__: tuple[str] = ("find_project_root", "find_pyproject_toml")¶
Exported objects from this module
Module objects
- drain_swamp.pep518_read.find_project_root(srcs, stdin_filename=None)¶
Return folder containing .git, .hg, or
pyproject.toml
.If no directory in the tree contains a marker that would specify it’s the project root, the root of the file system is returned.
Returns a two-tuple with the first element as the project root path and the second element as a string describing the method by which the project root was discovered.
- Parameters:
srcs¶ (collections.abc.Sequence[Any] | None) – Files or folders, for files will take the parent folder. Potential folders that may contain
pyproject.toml
stdin_filename¶ (str | None) – Default None. stdin file name, considers files parent as the project top folder
- Returns:
Folder containing .git, .hg, or
pyproject.toml
, will be a common parent of all files and directories passed insrcs
- Return type:
- Raises:
PermissionError
– Unreadable folder. Ungracefully handled
Note
Passing
pyproject.toml
, by stdin, could be useful for testing recipesWarning
functools.lru_cache causes optional parameter stdin_filename to NOT BE OPTIONAL
See also
black.files.find_project_root()
source and credit Black
- drain_swamp.pep518_read.find_pyproject_toml(path_search_start, stdin_filename)¶
Find the absolute filepath to a
pyproject.toml
if it exists.