-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0588213
commit 88c87e1
Showing
3 changed files
with
32 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,38 +8,41 @@ | |
name = 'stylegan2_pytorch', | ||
packages = find_packages(), | ||
entry_points={ | ||
'console_scripts': [ | ||
'stylegan2_pytorch = stylegan2_pytorch.cli:main', | ||
], | ||
'console_scripts': [ | ||
'stylegan2_pytorch = stylegan2_pytorch.cli:main', | ||
], | ||
}, | ||
version = __version__, | ||
license='GPLv3+', | ||
license = 'MIT', | ||
description = 'StyleGan2 in Pytorch', | ||
long_description_content_type = 'text/markdown', | ||
author = 'Phil Wang', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/lucidrains/stylegan2-pytorch', | ||
download_url = 'https://github.com/lucidrains/stylegan2-pytorch/archive/v_036.tar.gz', | ||
keywords = ['generative adversarial networks', 'artificial intelligence'], | ||
keywords = [ | ||
'generative adversarial networks', | ||
'artificial intelligence' | ||
], | ||
install_requires=[ | ||
'aim', | ||
'einops', | ||
'contrastive_learner>=0.1.0', | ||
'fire', | ||
'kornia>=0.5.4', | ||
'numpy', | ||
'retry', | ||
'tqdm', | ||
'torch', | ||
'torchvision', | ||
'pillow', | ||
'vector-quantize-pytorch==0.1.0' | ||
'aim', | ||
'einops>=0.7.0', | ||
'contrastive_learner>=0.1.0', | ||
'fire', | ||
'kornia>=0.5.4', | ||
'numpy', | ||
'retry', | ||
'tqdm', | ||
'torch', | ||
'torchvision', | ||
'pillow', | ||
'vector-quantize-pytorch==0.1.0' | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.8.9' | ||
__version__ = '1.8.10' |