-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (53 loc) · 2.06 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
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
import os.path
setupdir = os.path.dirname(__file__)
requirements = []
for line in open(os.path.join(setupdir, 'requirements.txt'), encoding="UTF-8"):
if line.strip() and not line.startswith('#'):
requirements.append(line)
setup(
name="thonny-pyboard",
version="0.2b1",
description="PyBoard MicroPython support for Thonny IDE",
long_description="""Plug-in for Thonny IDE which adds PyBoard MicroPython backend.
More info:
* https://bitbucket.org/plas/thonny-pyboard
* https://bitbucket.org/plas/thonny/wiki/MicroPython
* https://thonny.org
""",
url="https://bitbucket.org/plas/thonny-pyboard/",
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 PyBoard MicroPython Thonny",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.5",
include_package_data=True,
package_data={'thonnycontrib.pyboard': ['api_stubs/*', 'res/*']},
install_requires=requirements,
packages=["thonnycontrib.pyboard"],
)