diff --git a/src/ini2toml/plugins/setuptools_pep621.py b/src/ini2toml/plugins/setuptools_pep621.py index 9475c7a..01a5f25 100644 --- a/src/ini2toml/plugins/setuptools_pep621.py +++ b/src/ini2toml/plugins/setuptools_pep621.py @@ -54,9 +54,7 @@ chain_iter = chain.from_iterable ENV_MARKER = re.compile(r";\s*(python|platform|implementation|os|sys)[_.]", re.M) -"""Simplified regex for :pep:`508` markers that can be used in `setup.cfg`_ -.. _setup.cfg specs: https://setuptools.pypa.io/en/latest/userguide/declarative_config.html -""" # noqa +"""Simplified regex for :pep:`508` markers that can be used in ``setup.cfg``""" # Functions that split values from comments and parse those values split_list_comma = partial(split_list, sep=",", subsplit_dangling=False)