-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
69 lines (62 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
#
# [build-system]
# requires = ["setuptools>=61.0"]
# build-backend = "setuptools.build_meta"
[project]
name = "classifier_pipeline"
version = "0.0.18"
authors = [
{ name="Giampaolo Ferraro", email="[email protected]" },
]
description = "Classifier Pipeline"
readme = "PI-README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"tflite-runtime==2.14.0",
"matplotlib==3.6.3",
"pytz==2022.7.1",
"cptv==1.5.4",
"numpy",
"scipy==1.9.3",
"python-dateutil",
"scikit-learn==1.1.3",
"tables==3.8.0",
"h5py==3.8.0",
"pyyaml==6.0",
"pillow==10.0.1",
"attrs==24.2.0",
"filelock==3.0.12",
"Astral==1.10.1",
"timezonefinder==4.1.0",
"portalocker==1.5.2",
"toml==0.10.2",
"cacophonyapi==0.0.2",
"psutil==5.6.7",
"PyGObject==3.44.0",
"dbus-python==1.3.2",
"importlib_resources==5.10.2",
"opencv-python==4.8.0.76",
"inotify_simple==1.3.5",
"python-cptv==0.0.5"
]
[project.scripts]
pi_classify = "piclassifier:pi_classify"
[project.urls]
"Homepage" = "https://github.com/TheCacophonyProject/classifier-pipeline"
"Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
[tool.hatch.build.targets.wheel.force-include]
"./pi-classifier.yaml" = "classifier.yaml"
[tool.hatch.build.targets.wheel]
packages = [ "src/piclassifier", "src/config", "src/track", "src/ml_tools","src/classify"]
[tool.pytest.ini_options]
pythonpath = "src"