Spaces:
Runtime error
Runtime error
File size: 1,407 Bytes
999c5c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
[tool.poetry]
name = "deeplabcut-live"
version = "1.0.3"
description = "Class to load exported DeepLabCut networks and perform pose estimation on single frames (from a camera feed)"
authors = ["A. & M. Mathis Labs <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/DeepLabCut/DeepLabCut-live"
repository = "https://github.com/DeepLabCut/DeepLabCut-live"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent"
]
packages = [
{ include = "dlclive" }
]
include = ["dlclive/check_install/*"]
[tool.poetry.scripts]
dlc-live-test = "dlclive.check_install.check_install:main"
dlc-live-benchmark = "dlclive.benchmark:main"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.11"
numpy = "^1.20"
"ruamel.yaml" = "^0.17.20"
colorcet = "^3.0.0"
Pillow = ">=8.0.0"
py-cpuinfo = ">=5.0.0"
tqdm = "^4.62.3"
tensorflow = "^2.7.0,<=2.10"
pandas = "^1.3"
tables = "^3.6"
opencv-python-headless = "^4.5"
dlclibrary = ">=0.0.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|