Alex Chan
initial commit
999c5c9
raw
history blame
1.41 kB
[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 <admin@deeplabcut.org>"]
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"