From f35ca1fc5aa65953056ddb4c72ee0c28c21fa93b Mon Sep 17 00:00:00 2001 From: kjkriegel Date: Tue, 12 Sep 2017 00:01:53 +0200 Subject: [PATCH] Added setup.py for installation via pip --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..68a2c14 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +# _*_ coding: UTF-8 _*_ + +from setuptools import setup + +setup(name='PyGVisuals', + version='0.1', + description="A collection of Classes to create GUI's and more based purely on PyGame", + url='https://github.com/Impelon/PyGVisuals', + author='Impelon & kjkriegel', + author_email='pygvisuals@kjkriegel.de', + license='BSD-2-Clause', + packages=['pygvisuals'], + install_requires=["pygame"], + zip_safe=False,) \ No newline at end of file