-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
25 lines (23 loc) · 808 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
24
25
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='IQA_pytorch',
version='0.1',
description='IQA models in PyTorch',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['IQA_pytorch'],
data_files= [('', ['IQA_pytorch/weights/LPIPSvgg.pt','IQA_pytorch/weights/DISTS.pt'])],
include_package_data=True,
author='Keyan Ding',
author_email='dingkeyan93@outlook.com',
install_requires=["torch>=1.0"],
url='https://github.com/dingkeyan93/IQA-pytorch',
keywords = ['pytorch', 'similarity', 'IQA','metric','image-quality'],
platforms = "python",
license='MIT',
)
# python setup.py sdist bdist_wheel
# twine check dist/*
# twine upload dist/*