[build] Move optional dependencies to the `default` group

Authored by: bashonly
This commit is contained in:
bashonly 2024-10-15 09:39:53 -05:00
parent 64d84d75ca
commit a7749056a7
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0
1 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,10 @@ classifiers = [
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
dependencies = []
[project.optional-dependencies]
default = [
"brotli; implementation_name=='cpython'",
"brotlicffi; implementation_name!='cpython'",
"certifi",
@ -51,9 +54,6 @@ dependencies = [
"urllib3>=1.26.17,<3",
"websockets>=13.0",
]
[project.optional-dependencies]
default = []
curl-cffi = [
"curl-cffi==0.5.10; os_name=='nt' and implementation_name=='cpython'",
"curl-cffi>=0.5.10,!=0.6.*,<0.7.2; os_name!='nt' and implementation_name=='cpython'",