forked from SSL92/hyperIQA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 940 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
from setuptools import setup, find_packages
def read_requirements(file_path):
with open(file_path) as f:
return f.read().splitlines()
setup(
name='hyperIQA',
version='0.1.0', # Initial version
packages=find_packages(), # Automatically find packages in the directory
install_requires=read_requirements('requirements.txt'), # List of dependencies
description='Source code for the CVPR\'20 paper "Blindly Assess Image Quality in the Wild Guided by A Self-Adaptive Hyper Network"',
long_description=open('README.md').read(), # Optional: long description from README
long_description_content_type='text/markdown',
url='https://github.com/colossyan/hyperIQA', # Replace with your repo URL
author='adamantal',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.6', # Specify Python version requirements
)