-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.36 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
[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, <2.0",
"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"]
interactive = ['plotly>=5.20.0', 'dash>=2.16.1']
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"