25 lines
460 B
TOML
25 lines
460 B
TOML
[project]
|
|
name = "ai"
|
|
version = "1.0.0"
|
|
description = "IIAS Examples"
|
|
authors = [
|
|
{name = "Aleksey Filippov", email = "al.filippov@ulstu.ru"}
|
|
]
|
|
readme = "readme.md"
|
|
requires-python = ">=3.12,<3.13"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
jupyter = "^1.1.1"
|
|
numpy = "^1.26.4"
|
|
pandas = "^2.2.2"
|
|
matplotlib = "^3.9.2"
|
|
keras = "^3.9.2"
|
|
jax = "^0.5.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|