-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 777 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 777 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
35
36
37
38
39
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "wildlife-deterrent"
version = "1.0.0"
description = "Vision-based wildlife deterrent system using YOLOv8"
requires-python = ">=3.10"
dependencies = [
"ultralytics>=8.0.0",
"opencv-python>=4.8.0",
"numpy>=1.24.0",
"PyYAML>=6.0",
"plyer>=2.1.0",
"pygame>=2.5.0",
"aiohttp>=3.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
web = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"jinja2>=3.1.0",
]
[project.scripts]
wildlife-deterrent = "src.app:main"
[tool.setuptools.packages.find]
include = ["src*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]