18 lines
307 B
TOML
18 lines
307 B
TOML
[project]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pydantic-settings>=2.8.1",
|
|
"pyside6>=6.8.3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
train = [
|
|
"torch>=2.6.0",
|
|
]
|
|
|
|
[tool.mypy]
|
|
plugins = "pydantic.mypy" |