-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (46 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "eagle-surveillance"
version = "0.1.0"
description = "Real-time semantic surveillance with detection, tracking, and human feedback"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"redis>=2.0.1",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"uvicorn[standard]>=0.24.0",
"aiofiles>=23.0.0",
"numpy>=1.24.0",
"opencv-python>=4.8.0",
"ultralytics>=8.0.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"prometheus-client>=0.19.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=26.3.1",
"ruff>=0.1.0",
]
[tool.setuptools]
packages = ["apps", "libs", "services", "scripts"]
[tool.setuptools.package-dir]
apps = "apps"
libs = "libs"
services = "services"
scripts = "scripts"
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.black]
line-length = 100
target-version = ["py310", "py311"]
[tool.ruff]
line-length = 100
target-version = "py310"