-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
39 lines (35 loc) · 1.18 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
from setuptools import setup, find_packages
__version__ = "0.1.8"
url = "https://github.com/IsaacCorley/pytorch-enhance"
with open("requirements.txt", "r") as f:
install_requires = f.read().strip().splitlines()
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov', 'mock']
setup(
name='torch_enhance',
packages=find_packages(exclude=['examples']),
version=__version__,
license='Apache License 2.0',
description='Image Super-Resolution Library for PyTorch',
author='Isaac Corley',
author_email='[email protected]',
url=url,
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
keywords=[
'pytorch',
'image-super-resolution',
'computer-vision',
'deep-neural-networks',
],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)