This repository has been archived by the owner on Nov 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
61 lines (55 loc) · 2.2 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
59
60
61
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-esp",
version="0.2",
description="ESP8266 and ESP32 MicroPython support for Thonny IDE",
long_description="""Plug-in for Thonny IDE which adds ESP8266 and ESP32 MicroPython backends.
More info:
* https://github.com/thonny/thonny-esp
* https://github.com/thonny/thonny/wiki/MicroPython
* https://thonny.org
NB! This plug-in is only relevant for Thonny up to 3.2.1.
Since 3.2.2 this functionality is included in the main package.
""",
url="https://github.com/thonny/thonny-esp/",
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 ESP8266 ESP32 MicroPython Thonny",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.5",
include_package_data=True,
package_data={'thonnycontrib.esp': ['esp8266_api_stubs/*', 'esp32_api_stubs/*']},
install_requires=requirements,
packages=["thonnycontrib.esp"],
)