-
Notifications
You must be signed in to change notification settings - Fork 502
/
Copy pathsetup.py
23 lines (22 loc) · 832 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='lpips',
version='0.1.4',
author="Richard Zhang",
author_email="[email protected]",
description="LPIPS Similarity metric",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/richzhang/PerceptualSimilarity",
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"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)