From 24d5916a72a73419a5e23521854f474e792422d8 Mon Sep 17 00:00:00 2001 From: Vee9ahd1 Date: Sat, 11 May 2019 17:05:57 -0400 Subject: added packaging structure --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8acb130 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="GANtools", + version="0.0.1", + author="Vee9ahd1", + author_email="Vee9ahd1@arson.club", + description="cli tools for image generation w bigGAN", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://gitlab.com/Vee9ahd1/gantools", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GPL", + "Operating System :: OS Independent", + ], + ) -- cgit v1.2.1