23 lines
567 B
TOML
23 lines
567 B
TOML
[tool.poetry]
|
|
name = "cads-ai"
|
|
version = "0.1.0"
|
|
description = "Practial resources for CADS session on AI"
|
|
authors = ["Jake Walker <hi@jakew.me>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<3.12"
|
|
jupyterlab = "^4.2.0"
|
|
keras = "^3.3.3"
|
|
matplotlib = "^3.9.0"
|
|
numpy = "^1.26.4"
|
|
stable-baselines3 = {extras = ["extra"], version = "^2.3.2"}
|
|
gymnasium = {extras = ["box2d"], version = "^0.29.1"}
|
|
tensorflow = "^2.16.1"
|
|
scikit-image = "0.22.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|