This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (53 loc) · 2.04 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-m5stack",
version="0.1b1",
description="M5Stack MicroPython support for Thonny IDE",
long_description="""Plug-in for Thonny IDE which M5Stack MicroPython backends.
More info:
* https://github.com/thonny/thonny-m5stack
* https://github.com/thonny/thonny/wiki/MicroPython
* https://thonny.org
""",
url="https://github.com/thonny/thonny-m5stack",
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 M5Stack ESP32 MicroPython Thonny",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.5",
include_package_data=True,
package_data={'thonnycontrib.m5stack': ['api_stubs/*']},
install_requires=requirements,
packages=["thonnycontrib.m5stack"],
)