-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathsetup.py
29 lines (28 loc) · 1008 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
import setuptools
setuptools.setup(
name='style-transfer-pytorch',
version='0.1',
description='Neural style transfer in PyTorch.',
# TODO: add long description
long_description='Neural style transfer in PyTorch.',
url='https://github.com/crowsonkb/style-transfer-pytorch',
author='Katherine Crowson',
author_email='[email protected]',
license='MIT',
packages=['style_transfer'],
entry_points={
'console_scripts': ['style_transfer=style_transfer.cli:main'],
},
package_data={'style_transfer': ['*.icc', 'web_static/*']},
install_requires=['aiohttp>=3.7.2',
'dataclasses>=0.8;python_version<"3.7"',
'numpy>=1.19.2',
'Pillow>=8.0.0',
'tifffile>=2020.9.3',
'torch>=1.7.1',
'torchvision>=0.8.2',
'tqdm>=4.46.0'],
python_requires=">=3.6",
# TODO: Add classifiers
classifiers=[],
)