mirror of https://github.com/astral-sh/ruff
Remove `setup.py` (#2922)
This commit is contained in:
parent
028c7855b2
commit
976fe364d4
21
setup.py
21
setup.py
|
|
@ -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=[])
|
|
||||||
Loading…
Reference in New Issue