From 546efdf74cf3889f3085f8c265a2e05d52a7975f Mon Sep 17 00:00:00 2001 From: Neda Moeini <neda.moeini@geant.org> Date: Thu, 24 Oct 2024 14:15:25 +0200 Subject: [PATCH] Fix the extra requirements in setup --- setup.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 97a6b4f..b936957 100644 --- a/setup.py +++ b/setup.py @@ -10,11 +10,12 @@ setup( "Django==5.1.1", ], - extras_require=[ - "gunicorn", - "uvicorn", - ], - + extras_require={ + "prod": [ + "gunicorn", + "uvicorn", + ], + }, classifiers=[ "Programming Language :: Python :: 3", "Framework :: Django", -- GitLab