forked from lawsie/guizero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import os
from setuptools import setup, find_packages
## This is a Python 3 package only
from sys import version_info
if version_info.major != 3:
print("This package will only work with Python 3. \n"
"If you already have Python 3 installed try 'pip3 install guizero'.")
setup(
name="guizero",
version="0.3.3",
author="Laura Sach",
author_email="[email protected]",
description="Python module to allow kids to easily create GUIs",
long_description="""GUIzero is designed to be used by children. In educational settings,
installation of extra programs and features may be difficult, so the set up
process is designed to be as simple as possible.""",
license="BSD",
keywords=[
"GUI",
"GUIzero",
"interface",
],
url="https://github.com/lawsie/guizero",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Software Development :: User Interfaces",
"Topic :: Education",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
],
)