[tool.poetry] name = "trap" version = "0.1.0" description = "Art installation with trajectory prediction" authors = ["Ruben van de Ven "] readme = "README.md" [tool.poetry.scripts] trapserv = "trap.plumber:start" [tool.poetry.dependencies] python = "^3.10,<3.12," trajectron-plus-plus = { path = "../Trajectron-plus-plus/", develop = true } torch = [ { version="1.12.1" }, # { url = "https://download.pytorch.org/whl/cu113/torch-1.12.1%2Bcu113-cp38-cp38-linux_x86_64.whl", markers = "python_version ~= '3.8' and sys_platform == 'linux'" }, { url = "https://download.pytorch.org/whl/cu113/torch-1.12.1%2Bcu113-cp310-cp310-linux_x86_64.whl", markers = "python_version ~= '3.10' and sys_platform == 'linux'" }, ] torchvision = [ { version="0.13.1" }, # { url = "https://download.pytorch.org/whl/cu113/torchvision-0.13.1%2Bcu113-cp38-cp38-linux_x86_64.whl", markers = "python_version ~= '3.8' and sys_platform == 'linux'" }, { url = "https://download.pytorch.org/whl/cu113/torchvision-0.13.1%2Bcu113-cp310-cp310-linux_x86_64.whl", markers = "python_version ~= '3.10' and sys_platform == 'linux'" }, ] deep-sort-realtime = "^1.3.2" ultralytics = "^8.0.200" ffmpeg-python = "^0.2.0" torchreid = "^0.2.5" gdown = "^4.7.1" pandas-helper-calc = {git = "https://github.com/scls19fr/pandas-helper-calc"} tsmoothie = "^1.0.5" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"