-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (35 loc) · 1.09 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
import io
from setuptools import find_packages, setup
with io.open("README.md", "r", encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(
name="GANetic",
packages=find_packages(exclude=["docs", "tests*", "examples"]),
version="0.0.11",
license="MIT",
description="A Collection of GANs - PyTorch",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Geo Jolly",
author_email="[email protected]",
url="https://github.com/kingjuno/GANetic",
keywords=[
"GAN",
"Generative Adversarial Networks",
"Deep Learning",
"PyTorch",
"GANetic",
"Generative Artificial Intelligence",
],
install_requires=[
"torch>=1.10",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
)