-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.38 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
48
49
50
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xrobot"
version = "0.1.3"
description = "A lightweight application framework for robot module management, lifecycle control, and hardware abstraction."
requires-python = ">=3.8"
authors = [
{name = "Xiao", email = "2592509183@qq.com"}
]
maintainers = [
{name = "Xiao", email = "2592509183@qq.com"}
]
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["code generation", "embedded systems", "automation"]
dependencies = [
"argparse",
"pyyaml"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
gui = ["PyQt5"]
cli = ["rich", "click"]
[project.urls]
Homepage = "https://github.com/xrobot-org"
Documentation = "https://xrobot-org.github.io"
Repository = "https://github.com/xrobot-org/XRobot"
"Bug Tracker" = "https://github.com/xrobot-org/XRobot/issues"
[project.scripts]
xrobot_gen_main = "xrobot.GenerateMain:main"
xrobot_mod_parser = "xrobot.ModuleParser:main"
xrobot_create_mod = "xrobot.ModuleCreator:main"
xrobot_init_mod = "xrobot.InitModule:main"
xrobot_setup = "xrobot.XRobotSetup:main"
xrobot_add_mod = "xrobot.AddModule:main"
[tool.setuptools.packages.find]
where = ["src"]