forked from tuanln/NEO_CODE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.32 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "neo-code"
version = "0.4.0"
description = "Educational Python IDE for STEM & Robotics students"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "NEO Code Team" },
]
keywords = ["ide", "education", "python", "stem", "robotics", "kids"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Environment :: X11 Applications :: Qt",
]
dependencies = [
"PyQt5==5.15.9",
"Jedi>=0.19.0",
"pyflakes>=3.2.0",
"thingbot-telemetrix==1.0"
]
[project.urls]
Homepage = "https://github.com/MEO-3/neo-code"
Repository = "https://github.com/MEO-3//neo-code"
"Bug Tracker" = "https://github.com/MEO-3/neo-code/issues"
[project.scripts]
neo-code = "neo_code.__main__:main"
[project.optional-dependencies]
dev = [
"hatch",
"twine",
]
robot = [
"thingbot-telemetrix",
]
[tool.hatch.build.targets.wheel]
packages = ["neo_code"]