-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
32 lines (31 loc) · 931 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
26
27
28
29
30
31
32
from setuptools import setup
setup(
name="iqadataset",
version="0.1.3",
description="A collection of Image Quality Assessment (IQA) datasets",
long_description=open("readme.md").read(),
long_description_content_type="text/markdown",
author="Zhongling Wang",
author_email="[email protected]",
url="https://github.com/icbcbicc/IQA-Dataset",
packages=["iqadataset"],
install_requires=[
"pandas",
"pillow",
"torch",
"torchvision",
"wget"
],
include_package_data=True,
package_data={
"iqadataset": ["csv/*.txt"]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Processing"
],
python_requires=">=3.6"
)