informer_model/pyproject.toml
2024-08-18 15:36:58 +02:00

25 lines
428 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"src/ml"
]
[project]
name = "wnemsc"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pytorch-forecasting==1.0.0",
"plotly==5.22.0",
"wandb==0.16.6"
]
[tool.pytest.ini_options]
addopts = "--capture=no"
filterwarnings = [
"ignore::DeprecationWarning"
]