-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
56 lines (50 loc) · 1.81 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
[tool.poetry]
name = "camtrapml"
version = "0.4.1"
description = "CamTrapML is a Python library for Detecting, Classifying, and Analysing Wildlife Camera Trap Imagery."
authors = ["Benjamin C. Evans <Benjamin.Evans@brunel.ac.uk>"]
license = "MIT"
keywords = ["wildlife", "camtrap", "camera", "trap", "imagery", "classification", "detection", "analysis", "conservation"]
homepage = "https://github.com/bencevans/camtrapml"
repository = "https://github.com/bencevans/camtrapml"
documentation = "https://github.com/bencevans/camtrapml"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/bencevans/camtrapml/issues"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
tensorflow = "^2.10.0"
numpy = "^1"
tqdm = "^4"
Pillow = "^9"
tensorflow-hub = "^0.12.0"
PyExifTool = "^0.4.13"
font-fredoka-one = "^0.0.4"
requests = "^2"
matplotlib = "^3"
scikit-learn = "1.0.1"
scipy = "^1.9.1"
h5py = "^3.7.0"
[tool.poetry.dev-dependencies]
nbconvert = "^6.4.2"
notebook = "^6.4.8"
pylint = "^2.13.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"