forked from LoSealL/VideoSuperResolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.2 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright (c) 2017-2020 Wenyi Tang.
# Author: Wenyi Tang
# Email: wenyitang@outlook.com
# Update: 2020 - 2 - 16
from setuptools import find_packages
from setuptools import setup
# Get version from CHANGELOG
try:
with open('CHANGELOG.md') as fd:
VERSION = fd.readline()[:-1]
except IOError:
VERSION = '0.0.0'
REQUIRED_PACKAGES = [
'numpy',
'scipy',
'scikit-image',
'matplotlib',
'pillow',
'pypng',
'pytest',
'PyYAML',
'psutil',
'tqdm',
'h5py',
'easydict >= 1.9',
]
with open('README.md', 'r', encoding='utf-8') as fd:
long_desp = fd.read()
setup(
name='VSR',
version=VERSION,
description='Video Super-Resolution Framework',
long_description=long_desp,
long_description_content_type="text/markdown",
url='https://github.com/LoSealL/VideoSuperResolution',
packages=find_packages(),
install_requires=REQUIRED_PACKAGES,
license='MIT',
author='Wenyi Tang',
author_email='wenyitang@outlook.com',
keywords="super-resolution sr vsr cnn srcnn vespcn",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)