-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
130 lines (122 loc) · 4 KB
/
pyproject.toml
File metadata and controls
130 lines (122 loc) · 4 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[project]
name = "opp_repl"
authors = [
{name = "Levente Mészáros", email = "levy@omnetpp.org"},
]
maintainers = [
{name = "Levente Mészáros", email = "levy@omnetpp.org"},
{name = "Rudolf Hornig", email = "rudi@omnetpp.org"},
]
description = "OMNeT++ Python read-eval-print-loop for running and testing simulations"
keywords = ["omnetpp", "omnest", "simulation", "discrete", "event", "model", "repl"]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"ipython",
"pandas",
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Programming Language :: C++",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Education",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://omnetpp.org"
Documentation = "https://github.com/omnetpp/opp_repl/blob/main/README.md"
Changes = "https://github.com/omnetpp/opp_repl/blob/main/CHANGES.md"
Repository = "https://github.com/omnetpp/opp_repl"
Issues = "https://github.com/omnetpp/opp_repl/issues"
Changelog = "https://github.com/omnetpp/opp_repl/commits/main"
[project.optional-dependencies]
mcp = [
"httpx",
"mcp",
]
cluster = [
"dask",
"distributed",
]
data = [
"pandas",
]
chart = [
"matplotlib",
"numpy",
]
optimize = [
"scipy",
"optimparallel",
]
github = [
"requests",
]
ide = [
"py4j",
]
diffcharts = [
"PyQt6",
]
all = [
"dask",
"distributed",
"httpx",
"matplotlib",
"mcp",
"numpy",
"optimparallel",
"pandas",
"py4j",
"PyQt6",
"requests",
"scipy",
]
[project.scripts]
opp_repl = "opp_repl.repl:run_repl_main"
opp_repl_mcp_bridge = "opp_repl.common.mcp_bridge:main"
opp_repl_self_test = "opp_repl.main:run_self_test_main"
opp_mount = "opp_repl.simulation.overlay:mount_overlays_main"
opp_unmount = "opp_repl.simulation.overlay:unmount_overlays_main"
opp_build_project = "opp_repl.main:build_project_main"
opp_build_omnetpp = "opp_repl.main:build_omnetpp_main"
opp_clean_omnetpp = "opp_repl.main:clean_omnetpp_main"
opp_clean_project = "opp_repl.main:clean_project_main"
opp_run_simulations = "opp_repl.main:run_simulations_main"
opp_run_all_tests = "opp_repl.main:run_all_tests_main"
opp_run_chart_tests = "opp_repl.main:run_chart_tests_main"
opp_run_feature_tests = "opp_repl.main:run_feature_tests_main"
opp_run_fingerprint_tests = "opp_repl.main:run_fingerprint_tests_main"
opp_run_release_tests = "opp_repl.main:run_release_tests_main"
opp_run_sanitizer_tests = "opp_repl.main:run_sanitizer_tests_main"
opp_run_smoke_tests = "opp_repl.main:run_smoke_tests_main"
opp_run_speed_tests = "opp_repl.main:run_speed_tests_main"
opp_run_statistical_tests = "opp_repl.main:run_statistical_tests_main"
opp_update_chart_test_results = "opp_repl.main:update_chart_test_results_main"
opp_capture_module_images = "opp_repl.main:capture_module_images_main"
opp_update_module_image_test_results = "opp_repl.main:update_module_image_test_results_main"
opp_run_module_image_tests = "opp_repl.main:run_module_image_tests_main"
opp_update_fingerprint_test_results = "opp_repl.main:update_fingerprint_test_results_main"
opp_update_speed_test_results = "opp_repl.main:update_speed_test_results_main"
opp_update_statistical_test_results = "opp_repl.main:update_statistical_test_results_main"
opp_diff_charts = "opp_repl.diffcharts:main"
[tool.setuptools]
script-files = ["bin/opp_sandbox"]
[tool.setuptools.package-data]
opp_repl = ["opp/*.opp"]
[tool.setuptools.packages.find]
include = ["opp_repl*"]
[tool.setuptools_scm]
write_to = "opp_repl/_version.py"
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"