This repository has been archived by the owner on Jul 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.86 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
38
39
40
41
42
43
44
45
from setuptools import setup
setup (
name="thonny-pi",
version="1.5",
description="Raspberry Pi customizations for Thonny IDE",
long_description="""Thonny plug-in which adds Raspberry Pi theme.
More info about Thonny: https://thonny.org.
NB! This plug-in is only relevant for Thonny 3.0 and 3.1. In later versions this functionality is included in the main package.""",
url="https://github.com/thonny/thonny-pi/",
author="Aivar Annamaa",
author_email="[email protected]",
license="MIT",
classifiers=[
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Embedded Systems",
],
keywords="IDE education programming Thonny Raspberry Pi",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.5",
package_data={'thonnycontrib.pi': ['res/*']},
install_requires=["thonny >= 3.0.0, < 3.2.*"],
packages=["thonnycontrib.pi"],
)