-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 2.04 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "agentlib_mpc"
authors = [
{ name = "Associates of the AGENT project", email = "[email protected]" }
]
description = "Framework for development and execution of agents for control and simulation of energy systems."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"agents", "mpc",
"control", "distributed",
]
license = { text = "BSD-3-Clause" }
classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [
"numpy>=1.17.4",
"pandas>=1.1.0",
"scipy>=1.5.2",
"simpy>=4.0.1",
"pydantic>=2.0.0",
"casadi>=3.6.6",
"matplotlib>=3.5.1",
"matplotlib",
"attrs>=22.2.0",
"agentlib>=0.6.0",
'orjson>=3.9.5',
'rapidfuzz>=1.7.0',
'agentlib>=0.8.0',
]
dynamic = ["version"]
[project.optional-dependencies]
fmu = ['FMPy>=0.3.6']
ml = ["keras>=2.6.0", "tensorflow>=2.6.0", "scikit-learn"]
physXAI = ['agentlib_mpc[ml]', "physXAI @ git+https://github.com/RWTH-EBC/physXAI.git"]
interactive = ['plotly>=5.20.0', 'dash>=2.16.1', 'dash_daq']
cia = ["pycombina @ git+https://github.com/adbuerger/pycombina.git"]
full = ['agentlib_mpc[fmu,ml,interactive]', 'agentlib[full]']
[package.urls]
homepage = "https://github.com/RWTH-EBC/AgentLib_MPC"
documentation = "https://github.com/RWTH-EBC/AgentLib_MPC"
[tool.coverage.run]
source = ["agentlib_mpc", "examples"]
branch = true
[tool.coverage.paths]
# Map temporary test directories back to actual examples directory
# All examples are copied to paths ending in /ci_testing/
examples = [
"examples/",
"*/ci_testing",
]
source = [
"agentlib_mpc/",
"*/agentlib_mpc",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]