-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (43 loc) · 1.3 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
readme = "README.md"
name = "thonny-ev3dev"
#version = "0.0.1"
dynamic = ["version"]
authors = [{name = "Harco Kuppens", email = "[email protected]"}]
license = {file = "LICENSE.txt"}
description = "A plug-in which adds EV3 support for Thonny"
keywords = [
"IDE",
"education",
"programming",
"EV3",
"mindstorms",
"lego",
]
classifiers = [
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Software Development",
]
requires-python = ">=3.6"
dependencies = ["ev3devcmd==1.0.2", "ev3dev2simulator"]
[project.urls]
Homepage = "https://github.com/ev3dev-python-tools/thonny-ev3dev"
[tool.setuptools.package-data]
"thonnycontrib.ev3dev" = ["res/*"]
[tool.setuptools.dynamic]
version = {attr = "thonnycontrib.ev3dev.version.__version__"}