Fixed install error

error in agenticSeek setup command: 'install_requires' must be a string or iterable of strings containing valid project/version requirement specifiers; Expected end or semicolon (after version specifier)
    httpx>=0.27,<0.29anyio>=3.5.0,<5distro>=1.7.0,<2jiter>=0.4.0,<1sniffiotqdm>4
This commit is contained in:
Vadim Grinco 2025-03-15 19:22:48 +01:00 committed by GitHub
parent fda7b47faf
commit 4cd772589f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,11 +34,11 @@ setup(
"librosa==0.10.2.post1",
"selenium==4.29.0",
"markdownify==1.1.0",
"httpx>=0.27,<0.29"
"anyio>=3.5.0,<5"
"distro>=1.7.0,<2"
"jiter>=0.4.0,<1"
"sniffio"
"httpx>=0.27,<0.29",
"anyio>=3.5.0,<5",
"distro>=1.7.0,<2",
"jiter>=0.4.0,<1",
"sniffio",
"tqdm>4"
],
extras_require={
@ -60,4 +60,4 @@ setup(
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)
)