-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
91 lines (84 loc) · 2.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "rafcon"
version = "2.2.1" # Handled by bump2version
description = "Develop your robotic tasks with hierarchical state machines using an intuitive graphical user interface"
keywords = ["state machine", "robotic", "FSM", "development", "GUI", "visual programming"]
readme = "README.rst"
authors = [
{name = "Sebastian Brunner", email = "[email protected]"},
{name = "Rico Belder", email = "[email protected]"},
{name = "Franz Steinmetz", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications :: GTK",
"Framework :: Robot Framework",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Utilities",
]
dependencies = [
"PyGObject( >=3.42.0,<4.0.0)",
"wrapt (>=1.14.0,<2.0.0)",
"astroid (>=3.0.0,<4.0.0) ; python_version >= '3.11'",
"astroid (>=2.15.8,<3.0.0) ; python_version < '3.11'",
"gaphas (>=2.1.0,<2.2.0)",
"jsonconversion (>=1.1.0,<2.0.0)",
"psutil (>=5.0.0,<6.0.0)",
"pycairo (>=1.11.0,<2.0.0)",
"pylint (>=3.0.0,<4.0.0) ; python_version >= '3.11'",
"pylint (>=2.11.0,<3.0.0) ; python_version < '3.11'",
"simplegeneric (>=0.5.0,<1.0.0)",
"numpy (>=2.0,<3.0) ; python_version >= '3.11'",
"numpy (>=1.26,<2.0) ; python_version < '3.11'",
"pandas (>=1.2.0,<2.0.0)",
"yaml_configuration (>=0.2.5,<0.3.0)",
]
license = {text = "EPL"}
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/DLR-RM/RAFCON"
[tool.pdm.dev-dependencies]
dev = [
"attrs >=22.2.0",
"graphviz >=0.18.2",
"matplotlib (>=3.10,<4.0) ; python_version >= '3.11'",
"matplotlib (>=3.9,<3.10) ; python_version < '3.11'",
"monitoring >=0.9.12",
"objgraph >=3.5.0",
"profiling (>=0.1.3) ; python_version < '3.11'",
"pyuserinput >=0.1.11",
"pytest-faulthandler >=1.6.0",
"pytest-mock (>=1.9.0,<3)",
"pytest-timeout",
"pytest (>=6.0.0,<7.0.0)",
"libsass",
"coverage",
"tox >=3.28.0",
"bump2version >=1.0.1",
]
[tool.pdm.build]
package-dir = "source"
includes = ["source/rafcon"]
excludes = ["source/rafcon/share/ln", "source/rafcon/share/themes/RAFCON/templates", "tests"]
[tool.pdm.scripts]
pre_build.shell = """
python3 pre_build.py
"""
[project.scripts]
rafcon_core = "rafcon.core.start:main"
[project.gui-scripts]
rafcon = "rafcon.gui.start:main"
rafcon_execution_log_viewer = "rafcon.gui.execution_log_viewer:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"