We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b723d35 commit f35ca1fCopy full SHA for f35ca1f
setup.py
@@ -0,0 +1,14 @@
1
+# _*_ coding: UTF-8 _*_
2
+
3
+from setuptools import setup
4
5
+setup(name='PyGVisuals',
6
+ version='0.1',
7
+ description="A collection of Classes to create GUI's and more based purely on PyGame",
8
+ url='https://github.com/Impelon/PyGVisuals',
9
+ author='Impelon & kjkriegel',
10
+ author_email='[email protected]',
11
+ license='BSD-2-Clause',
12
+ packages=['pygvisuals'],
13
+ install_requires=["pygame"],
14
+ zip_safe=False,)
0 commit comments