diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2021-12-01 20:07:30 +0000 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-03-05 09:56:47 +0000 |
| commit | 49b7a60050836868ecd63dc38ad0729626a356f3 (patch) | |
| tree | 7ee58a4873da3c183e27bcabb9aa8b37424dafe7 /setuptools/config/__init__.py | |
| parent | e8ad85b5e8d07fa2e2c2c41d4a9da4aa310cbfcd (diff) | |
| download | python-setuptools-git-49b7a60050836868ecd63dc38ad0729626a356f3.tar.gz | |
Rename `config` to `config.setupcfg`
This will facilitate the implementation of other configuration formats
(such as pyproject.toml as initially defined by PEP 621)
Diffstat (limited to 'setuptools/config/__init__.py')
| -rw-r--r-- | setuptools/config/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/setuptools/config/__init__.py b/setuptools/config/__init__.py new file mode 100644 index 00000000..0d190ecf --- /dev/null +++ b/setuptools/config/__init__.py @@ -0,0 +1,11 @@ +# For backward compatibility, the following classes/functions are exposed +# from `config.setupcfg` +from setuptools.config.setupcfg import ( + parse_configuration, + read_configuration, +) + +__all__ = [ + 'parse_configuration', + 'read_configuration' +] |
