- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
19 lines (17 loc) · 629 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# _*_ coding: UTF-8 _*_
fromsetuptoolsimportsetup
setup(name="PyGVisuals",
version="0.7",
description="A collection of classes to create GUIs 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",
"pygvisuals.borders",
"pygvisuals.designs",
"pygvisuals.io",
"pygvisuals.util",
"pygvisuals.widgets",],
install_requires=["pygame"],
zip_safe=False,)