Skip to content

Commit f35ca1f

Browse files
committed
Added setup.py for installation via pip
1 parent b723d35 commit f35ca1f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)