-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject-utils.toml
More file actions
75 lines (64 loc) · 2 KB
/
pyproject-utils.toml
File metadata and controls
75 lines (64 loc) · 2 KB
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
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = [
"setuptools>=77"
]
[project]
name = "megadetector-utils"
version = "10.0.20"
description = "Utility code associated with the MegaDetector project."
readme = "README-package-utils.md"
requires-python = ">=3.9,<3.14"
license = "MIT"
keywords = ["camera traps", "conservation", "wildlife", "ai", "megadetector"]
authors = [
{name = "Your friendly neighborhood MegaDetector team", email = "cameratraps@lila.science" }
]
maintainers = [
{name = "Your friendly neighborhood MegaDetector team", email = "cameratraps@lila.science" }
]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy >= 1.26.4",
"Pillow >= 9.5",
"tqdm >= 4.64.0",
"jsonpickle >= 3.0.2",
"humanfriendly >= 2.1",
"matplotlib >= 3.8.0",
"opencv-python >= 4.8.0",
"requests >= 2.31.0",
"fastquadtree >= 1.1.2",
"scikit-learn >= 1.3.1",
"pandas >= 2.1.1",
"python-dateutil",
"send2trash",
"clipboard",
# Not imported directly, but required to de-serialize some models
"dill",
# Used for repo maintenance
# "ruff",
"pytest",
# Don't import YOLO-/torch-related packages in the utils package.
# "ultralytics-yolov5 == 0.1.1",
# "yolov9pip == 0.0.4",
# Let ultralytics-yolov5 install torch
# "torch >= 2.0.1",
# "torchvision >= 0.15.2",
# Let the user install ultralytics if they want to use YOLOv11 models
# ultralytics
# PyTorch will get installed by ultralytics-yolov5
#
# "torch >= 2.0.1",
# "torchvision >= 0.15.2"
# This is a compatible alternative to ultralytics-yolov5, just keeping it
# here for posterity.
# "yolov5 == 7.0.13"
]
[project.urls]
"Homepage" = "https://github.com/agentmorris/MegaDetector"
"Documentation" = "https://megadetector.readthedocs.io"
"Bug Reports" = "https://github.com/agentmorris/MegaDetector/issues"
"Source" = "https://github.com/agentmorris/MegaDetector"
[tool.setuptools.packages.find]
include = ["megadetector*"]