From 16d6521d91fb7417f78322dd2c63f79b266c37a7 Mon Sep 17 00:00:00 2001 From: Michael Seifert Date: Mon, 28 Mar 2022 09:54:47 +0200 Subject: [PATCH] build: Remove deprecated setup.py. setup.py is no longer necessary when the project is installed with a PEP 517 compatible build. Pip has support for PEP 517 since v19.0. The setuptools documentation warns about removing setup.py when editable installations need to be possible. This shouldn't be an issue since editable installations are still possible with pip v21.1 or newer. [1] I don't think a bump of the minimal setuptools version is necessary for this change. Closes #283 [1] https://pip.pypa.io/en/stable/news/#v21-1 Signed-off-by: Michael Seifert --- setup.py | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 7f1a1763..00000000 --- a/setup.py +++ /dev/null @@ -1,4 +0,0 @@ -from setuptools import setup - -if __name__ == "__main__": - setup()