-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
56 lines (50 loc) · 1.6 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
[build-system]
requires = [
"setuptools>61"
]
[project]
name = "megadetector"
version = "5.0.21"
description = "MegaDetector is an AI model that helps conservation folks spend less time doing boring things with camera trap images."
readme = "README-package.md"
# As of 2023.10.10, PyTorch isn't installable on Python 3.12
requires-python = ">=3.9,<3.12"
license = {file = "LICENSE"}
keywords = ["camera traps", "conservation", "wildlife", "ai", "megadetector"]
authors = [
{name = "Your friendly neighborhood MegaDetector team", email = "[email protected]" }
]
maintainers = [
{name = "Your friendly neighborhood MegaDetector team", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"Pillow >= 9.5",
"tqdm >= 4.64.0",
"jsonpickle >= 3.0.2",
"humanfriendly >= 10.0",
"numpy >= 1.22, < 1.24",
"matplotlib >= 3.8.0",
"opencv-python >= 4.8.0",
"requests >= 2.31.0",
"pyqtree >= 1.0.0",
"seaborn >= 0.12.2",
"scikit-learn >= 1.3.1",
"pandas >= 2.1.1",
"PyYAML >= 6.0.1",
"ultralytics-yolov5 == 0.1.1"
# "torch >= 2.0.1",
# "torchvision >= 0.15.2",
# "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*"]