From 136040d443583090dd62dbc88cb963f6eaf09e4b Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Thu, 29 Apr 2021 15:55:17 +0300 Subject: [PATCH] Uses links to dependencies. Not PEP 508 though - there is no way to specify version restriction for PEP 508 deps. --- setup.cfg | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 68a36ee4..3edc5385 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,11 +26,12 @@ packages = hyper.http20 hyper.common hyper.http11 + install_requires = - h2>=2.4 - hyperframe>=3.2 - rfc3986>=1.1.0 - brotlipy>=0.7.0 + h2>=2.4 # git+https://github.com/python-hyper/h2.git + hyperframe>=3.2 # git+https://github.com/python-hyper/hyperframe.git + rfc3986>=1.1.0 # git+https://github.com/python-hyper/rfc3986.git + brotlipy>=0.7.0 # git+https://github.com/python-hyper/brotlicffi.git include_package_data = True tests_require = pytest; requests; mock