-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (51 loc) · 1.31 KB
/
pyproject.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "courtvision"
version = "0.2.0"
description = ""
authors = ["benjamin <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
cv-grab-frames = 'courtvision.console:grab_frames_from_clips'
[tool.poetry.dependencies]
python = "^3.11"
imageio = "^2.27.0"
black = {extras = ["jupyter"], version = "^23.3.0"}
numpy = "^1.24.2"
# TODO: this is a macosx_11_0_arm64 only wheel!
pytorch-lightning = "^2.0.1.post0"
pydantic = "^2.0.0"
av = "^10.0.0"
pytube = "15.0.0"
structlog = "^23.1.0"
wandb = "^0.15.4"
torchvision = "^0.15.2"
# nvidia-cublas-cu11 = "^11"
# nvidia-cuda-runtime-cu11 = "^11"
torch = "^2.0.1"
opencv-python = "^4.7.0.72"
matplotlib = "^3.7.1"
kornia = "^0.6.12"
boto3 = "^1.26.160"
rerun-sdk = "^0.7.0"
ultralytics = "^8.0.121"
pydantic-settings = "^2.0.0"
[tool.poetry.group.dev.dependencies]
ipywidgets = "^8.0.6"
black = "^23.3.0"
pytest = "^7.4.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.3"
install = "^1.3.5"
mkdocs-material = "^9.1.15"
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
mkdocs-literate-nav = "^0.6.0"
[tool.poetry.group.cli.dependencies]
typer = "^0.9.0"
rich = "^13.4.2"
textual = "^0.27.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-p no:warnings"