#!/usr/bin/env python

from distutils.core import setup

setup(
      name='lpips-tf',
      description='Tensorflow port for the Learned Perceptual Image Patch Similarity (LPIPS) metric',
      author='Alex Lee',
      url='https://github.com/alexlee-gk/lpips-tensorflow/',
      py_modules=['lpips_tf']
)