1 Star 0 Fork 0

KojimaNotGood/style-transfer-pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1008 Bytes
一键复制 编辑 原始数据 按行查看 历史
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=[],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/noooToday/style-transfer-pytorch.git
[email protected]:noooToday/style-transfer-pytorch.git
noooToday
style-transfer-pytorch
style-transfer-pytorch
master

搜索帮助