Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgatis committed May 31, 2023
1 parent 2d12a01 commit b888db7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 39 deletions.
38 changes: 19 additions & 19 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
aiohttp==3.8.1
asyncer==0.0.2
click==8.1.3
fastapi==0.92.0
filetype==1.2.0
gradio==3.32.0
imagehash==4.3.1
numpy==1.23.5
onnxruntime==1.14.1
opencv-python-headless==4.6.0.66
pillow==9.3.0
pooch==1.6.0
pymatting==1.1.8
python-multipart==0.0.5
scikit-image==0.19.3
scipy==1.9.3
tqdm==4.64.1
uvicorn==0.20.0
watchdog==2.1.9
aiohttp
asyncer
click
fastapi
filetype
gradio
imagehash
numpy
onnxruntime
opencv-python-headless
pillow
pooch
pymatting
python-multipart
scikit-image
scipy
tqdm
uvicorn
watchdog
40 changes: 20 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,33 +37,33 @@
packages=["rembg", "rembg.sessions", "rembg.commands"],
python_requires=">3.7, <3.11",
install_requires=[
"aiohttp>=3.8.1",
"asyncer>=0.0.2",
"click>=8.1.3",
"fastapi>=0.92.0",
"filetype>=1.2.0",
"gradio>=3.32.0",
"imagehash>=4.3.1",
"numpy>=1.23.5",
"onnxruntime>=1.14.1",
"opencv-python-headless>=4.6.0.66",
"pillow>=9.3.0",
"pooch>=1.6.0",
"pymatting>=1.1.8",
"python-multipart>=0.0.5",
"scikit-image>=0.19.3",
"scipy>=1.9.3",
"tqdm>=4.64.1",
"uvicorn>=0.20.0",
"watchdog>=2.1.9",
"aiohttp",
"asyncer",
"click",
"fastapi",
"filetype",
"gradio",
"imagehash",
"numpy",
"onnxruntime",
"opencv-python-headless",
"pillow",
"pooch",
"pymatting",
"python-multipart",
"scikit-image",
"scipy",
"tqdm",
"uvicorn",
"watchdog",
],
entry_points={
"console_scripts": [
"rembg=rembg.cli:main",
],
},
extras_require={
"gpu": ["onnxruntime-gpu>=1.14.1"],
"gpu": ["onnxruntime-gpu"],
},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
Expand Down

0 comments on commit b888db7

Please sign in to comment.