diff options
author | Ronny Pfannschmidt <opensource@ronnypfannschmidt.de> | 2021-08-27 10:57:04 +0200 |
---|---|---|
committer | Ronny Pfannschmidt <opensource@ronnypfannschmidt.de> | 2021-08-27 10:57:04 +0200 |
commit | 4445d67341721d411be85e4ff0bbedc7ec165486 (patch) | |
tree | 769cf58eaae0ca73d21422bfa651ea3fd1abc59b /pyproject.toml | |
parent | 74c746646251e9b20cc62575be1427b4186def23 (diff) | |
download | setuptools-scm-4445d67341721d411be85e4ff0bbedc7ec165486.tar.gz |
fix #605: completely disallow bdist_egg - modern enough setuptools>=45 uses pip
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 452a827..2ab901e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools>=45", "wheel"] +requires = ["setuptools>=45", "wheel", "tomli"] build-backend = "setuptools.build_meta" |