-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 795 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()
setup(name='vegans',
version='0.1.0',
description='A library to easily train various existing GANs in PyTorch.',
long_description=long_description,
keywords='gan gans pytorch generative adversarial networks',
url='https://github.com/unit8co/vegans/',
author='Unit8',
author_email='julien@unit8.co',
license='MIT',
packages=find_packages(),
python_requires='>=3.5',
install_requires=[
'numpy>=1.15.4',
'matplotlib>=3.0.2',
'torch>=1.0.0',
'torchvision>=0.2.1'],
zip_safe=False)