Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dependencies #113

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: fixed dependencies and added extra
  • Loading branch information
Milly committed Sep 14, 2022
commit e2a32000c0710ec5e167d826ffc9d1322014d18f
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,22 @@
packages=['lpips'],
package_data={'lpips': ['weights/v0.0/*.pth','weights/v0.1/*.pth']},
include_package_data=True,
install_requires=["torch>=0.4.0", "torchvision>=0.2.1", "numpy>=1.14.3", "scipy>=1.0.1", "tqdm>=4.28.1"],
install_requires=[
"torch>=0.4.0",
"torchvision>=0.2.1",
"numpy>=1.14.3",
"scipy>=1.0.1",
"scikit-image>=0.13.0",
"tqdm>=4.28.1",
],
extras_require = {
"dev": ["jupyter"],
"loadimage": [
"rawpy>=0.17.2",
"opencv-python>=2.4.11",
"matplotlib>=1.5.1",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
Expand Down