From 976fe364d44f9ebdd5dce2a500dd8342c2d93bd6 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 15 Feb 2023 09:35:11 -0500 Subject: [PATCH] Remove `setup.py` (#2922) --- setup.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 57a5a943dc..0000000000 --- a/setup.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys - -from setuptools import setup - -sys.stderr.write( - """ -=============================== -Unsupported installation method -=============================== -ruff no longer supports installation with `python setup.py install`. -Please use `python -m pip install .` instead. -""", -) -sys.exit(1) - -# The below code will never execute, however GitHub is particularly -# picky about where it finds Python packaging metadata. -# See: https://github.com/github/feedback/discussions/6456 -# -# To be removed once GitHub catches up. -setup(name="ruff", install_requires=[])