-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (71 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (71 loc) · 2.14 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>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PytorchWildlife"
version = "1.3.0"
description = "PyTorch-Wildlife: unified open-source AI framework for camera-trap detection, species classification, and wildlife monitoring."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "Andres Hernandez", email = "v-hernandres@microsoft.com"},
{name = "Zhongqi Miao", email = "zhongqimiao@microsoft.com"},
{name = "Daniela Ruiz Lopez", email = "v-druizlopez@microsoft.com"},
{name = "Isai Daniel Chacon Silva", email = "v-ichaconsil@microsoft.com"},
]
keywords = [
"PyTorch-Wildlife",
"MegaDetector",
"camera traps",
"wildlife detection",
"animal detection",
"species classification",
"conservation",
"computer vision",
"object detection",
"deep learning",
"bioacoustics",
"AI for Good",
]
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 = [
"torch",
"torchvision",
"torchaudio",
"tqdm",
"Pillow",
"supervision==0.23.0",
"gradio",
"ultralytics",
"chardet",
"wget",
"yolov5",
"setuptools",
"scikit-learn",
"timm",
"lightning",
"omegaconf",
]
[project.urls]
Homepage = "https://github.com/microsoft/Pytorch-Wildlife"
Documentation = "https://microsoft.github.io/Pytorch-Wildlife/"
Repository = "https://github.com/microsoft/Pytorch-Wildlife"
"Bug Tracker" = "https://github.com/microsoft/Pytorch-Wildlife/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yml"]