-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
48 lines (46 loc) · 1.07 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
[project]
name = "cs702"
version = "0.1.0"
description = "CS702 project"
requires-python = ">=3.12"
dependencies = [
"arviz==0.20.0",
"casadi==3.7.2",
"diffrax==0.7.1",
"jaxopt==0.8.5",
"jupyter==1.1.1",
"matplotlib==3.10.0",
"networkx==3.4.2",
"numpy==2.4.1",
"numpyro==0.19.0",
"optax==0.2.4",
"pandas==2.2.3",
"pyomo==6.8.2",
"rtamt==0.3.5",
"scikit-learn==1.8.0",
"scipy==1.16.3",
"seaborn==0.13.2",
"stljax==1.1.3",
"stormpy==1.11.3",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = [
"01_introduction*",
"02_intelligent_user_interface*",
"04_bayesian_inference*",
"05_validating_user_model*",
"06_bandit*",
"07_mdp*",
"08_discrete_optimization*",
"09_discrete_event_systems*",
"10_conv_verification*",
"11_dynamical_system*",
"12_state_space_representation*",
"13_numerical_optimization*",
"14_optimization_control*",
"15_cont_verification*",
"16_bayesian_filter*",
]