forked from conservationtechlab/animl-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 911 Bytes
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
[project]
name = "animl-lite"
version = "3.2.1"
description = "Tools for classifying camera trap images"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["camera trap", "ecology", "conservation", "zoo", "SDZWA", "conservationtechlab"]
authors = [{name = "Kyra Swanson", email = "tswanson@sdzwa.org" }]
requires-python = ">=3.12,<3.14"
dependencies = [
"numpy>=2.0.2",
"pandas>=2.2.2,<3.0.0",
"pillow>=11.0.0",
"pyyaml>=6.0.3",
"opencv-python>=4.12.0.88",
"tqdm>=4.66.5",
]
[project.optional-dependencies]
gpu = [
"onnxruntime-gpu==1.20.0",
]
[project.urls] # Optional
"Homepage" = "https://github.com/conservationtechlab/animl-py"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"