-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
50 lines (41 loc) · 1.46 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
[project]
name = "animl"
version = "1.3.0" # Required
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 = "[email protected]" }]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.26.4",
"onnxruntime-gpu",
"pandas>=2.2.2",
"panoptes_client>=1.6.2",
"pillow>10.3.0",
"pyexiftool>=0.5.6",
"opencv-python>=4.10.0.82",
"scikit-learn>=1.5.0",
"timm>=1.0",
"torch>=2.2.2",
"torchvision>=0.17.2",
"tqdm>=4.66.4",
"wget>=3.2"
]
[project.urls] # Optional
"Homepage" = "https://github.com/conservationtechlab/animl-py"
# The following would provide a command line executable called `sample`
# which executes the function `main` from this package when invoked.
#[project.scripts] # Optional
#sample = "sample:main"
# This is configuration specific to the `setuptools` build backend.
# If you are using a different build backend, you will need to change this.
#[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
#package-data = {"sample" = ["*.dat"]}
[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"