From bdae22b5bb9c0a7728d1e7f26ee8fb780e20829a Mon Sep 17 00:00:00 2001 From: Rudi Giesler Date: Thu, 12 May 2022 16:14:38 +0200 Subject: [PATCH] Fix duplicate install_requires in setup.py --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 37477ef..a1fa5ef 100644 --- a/setup.py +++ b/setup.py @@ -14,15 +14,13 @@ setup_requires=[ 'pyrabbit', ], - install_requires=[ - 'anyio>=2', - ], keywords=['asyncio', 'amqp', 'rabbitmq', 'aio'], packages=[ 'async_amqp', ], install_requires=[ 'pamqp>=2.2.0,<3', + 'anyio>=2', ], classifiers=[ "Development Status :: 4 - Beta",