From f28e11e051a302048cb72c949652e3a3753ee1ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Ma=C3=AFzi?= Date: Thu, 30 Jul 2020 10:03:04 +0200 Subject: [PATCH] [deps] Remove cli from extras_require. --- setup.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 89e267c..6c4a686 100755 --- a/setup.py +++ b/setup.py @@ -43,19 +43,17 @@ setup( packages=get_packages(module_name), python_requires=">=3.7", install_requires=[ - "half_orm", "jwt", "starlette", + "half_orm @ git+ssh://git@gite.lirmm.fr/maizi/halfORM.git", + "click", + "pygit2", + "uvicorn" ], extras_require={ "tests":[ "pytest", "requests" - ], - "cli":[ - "click", - "pygit2", - "uvicorn" ] }, entry_points={