27 lines
593 B
TOML
27 lines
593 B
TOML
[tool.poetry]
|
|
name = "trajpred"
|
|
version = "0.1.0"
|
|
description = "Predict trajectories for anomaly detection"
|
|
authors = ["Ruben van de Ven <git@rubenvandeven.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9,<3.12"
|
|
numpy = "^1.24.3"
|
|
opencv-python = "^4.7.0.72"
|
|
ipykernel = "^6.22.0"
|
|
torch = "^2.0.0"
|
|
torchvision = "^0.15.1"
|
|
av = "^10.0.0"
|
|
matplotlib = "^3.7.1"
|
|
numba = "^0.57.0"
|
|
scikit-image = "^0.20.0"
|
|
scikit-learn = "^1.2.2"
|
|
filterpy = "^1.4.5"
|
|
tqdm = "^4.65.0"
|
|
ipywidgets = "^8.0.6"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|