From fabceb844fc9a49fba52540a506976a86a4763ea Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Thu, 29 Dec 2022 15:13:02 +0100 Subject: [PATCH] Delete setup.py (#1989) --- setup.py | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 1a990461..00000000 --- a/setup.py +++ /dev/null @@ -1,29 +0,0 @@ -import sys - -from setuptools import setup - -sys.stderr.write( - """ -=============================== -Unsupported installation method -=============================== -Starlette 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="starlette", - install_requires=[ - "anyio>=3.4.0,<5", - "typing_extensions>=3.10.0; python_version < '3.10'", - ], -)