mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-29 07:53:52 +00:00
24 lines
586 B
Python
24 lines
586 B
Python
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)
|
|
|
|
"abc".isidentifier()
|
|
|
|
# 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=[])
|