Skip to content

Commit

Permalink
Merge pull request #4 from Impelon/setup
Browse files Browse the repository at this point in the history
Added setup.py for installation via pip
  • Loading branch information
Impelon authored Sep 12, 2017
2 parents 769b567 + f35ca1f commit f3e1028
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
license='BSD-2-Clause',
packages=['pygvisuals'],
install_requires=["pygame"],
zip_safe=False,)

0 comments on commit f3e1028

Please sign in to comment.