From: Marcelo Trylesinski Date: Fri, 2 Sep 2022 06:03:17 +0000 (+0200) Subject: Add fake setup.py (#1836) X-Git-Tag: 0.21.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fa42a287517be83b2da4da42e0e8056a4be548a;p=thirdparty%2Fstarlette.git Add fake setup.py (#1836) --- diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..1a990461 --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +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'", + ], +)