From: Marcelo Trylesinski Date: Thu, 1 Sep 2022 16:13:35 +0000 (+0200) Subject: Add fake setup.py (#2351) X-Git-Tag: 0.23.1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f79b5c090081ea4c8c185f98b2bb3b33e464100;p=thirdparty%2Fhttpx.git Add fake setup.py (#2351) --- diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..7b44ded0 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +import sys + +from setuptools import setup + +sys.stderr.write( + """ +=============================== +Unsupported installation method +=============================== +httpx 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="httpx", + install_requires=[ + "certifi", + "sniffio", + "rfc3986[idna2008]>=1.3,<2", + "httpcore>=0.15.0,<0.16.0", + ], +)