-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (52 loc) · 1.33 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
[project]
name = "yogo"
version = "1.0.1"
description = "The \"you only glance once\" object detection model"
authors = [
{name = "Axel Jacobsen", email="[email protected]"},
{name = "Paul Lebel", email="[email protected]"},
{name = "Ilakkiyan Jeyakumar", email="[email protected]"},
]
readme = "README.md"
keywords = ["object detection", "YOGO", "YOLO", "deep learning", "PyTorch"]
license = { file = "LICENSE" }
requires-python = ">=3.9,<3.11"
dependencies = [
"zarr==2.17",
"torch>=1.13.1,<=2.1.0",
"torchmetrics[detection]>=0.11.4",
"torchvision>=0.14.1",
"ruamel.yaml==0.17.21",
"tqdm>=4.61.2,<5.0.0",
"wandb>=0.14.2",
"matplotlib>=3.4.2,<4.0.0",
"MonkeyType==23.3.0",
"onnx>=1.14.0",
"onnxruntime>=1.14.1",
"onnx-simplifier>=0.4.17",
"openvino-dev==2023.0.2"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3,<8.0.0",
"ruff>=0.4.4",
"black>=24.4.2",
"mypy>=1.10.0"
]
[tool.setuptools.packages.find]
include = ['yogo*']
[project.scripts]
yogo = "yogo.__main__:main"
[project.urls]
repository = "https://github.com/czbiohub-sf/yogo"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
lint.ignore = ["E501"]
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]