-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.93 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "megadetector-core"
version = "0.1.0"
description = "MegaDetector: AI-powered wildlife detection for camera trap images. A simplified interface to MegaDetector via PyTorch-Wildlife."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "Microsoft AI for Good Lab", email = "zhongqimiao@microsoft.com"},
]
keywords = [
"megadetector",
"MegaDetectorV6",
"MegaDetectorV5",
"camera traps",
"camera-trap analysis",
"wildlife detection",
"animal detection",
"bounding box detection",
"conservation",
"open-source AI",
"AI for Good",
"computer vision",
"object detection",
"deep learning",
"PyTorch-Wildlife",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
"PytorchWildlife",
"ultralytics>=8.0.0",
"munch>=2.0.0",
"wget>=3.0",
"PyYAML>=6.0",
"torch>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/microsoft/MegaDetector"
Documentation = "https://microsoft.github.io/MegaDetector/"
Repository = "https://github.com/microsoft/MegaDetector"
"Source Code" = "https://github.com/microsoft/MegaDetector"
"Bug Tracker" = "https://github.com/microsoft/MegaDetector/issues"
[project.scripts]
megadetector = "megadetector_core.cli:main"
[tool.setuptools.packages.find]
where = ["src"]