diff --git a/pyproject.toml b/pyproject.toml index 7cc24a09..aacce1a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,8 @@ [build-system] # Specify the required build system. -requires = ["setuptools", "wheel"] +# Setuptools 40.9.0+ is necessary to get rid of setup.py; see +# https://github.com/pypa/setuptools/pull/1675 +requires = ["setuptools >= 40.9.0", "wheel"] build-backend = "setuptools.build_meta" [tool.bork.zipapp] diff --git a/setup.py b/setup.py deleted file mode 100755 index 06269e42..00000000 --- a/setup.py +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env python3 - -from setuptools import setup - -# See setup.cfg for the actual configuration. -setup()