-
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) · 803 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 803 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
[project]
name = "gack"
version = "0.1.0"
description = "Privacy preserving home monitoring"
dependencies = [
"ultralytics>=8.3.169",
"opencv-python>=4.12.0.88",
"ffmpeg-python>=0.2.0",
"python-dotenv>=1.1.1",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"requests>=2.32.4",
"numpy<=2.2.6",
"aiosqlite>=0.20.0",
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
"pydantic>=2.0.0",
"httpx>=0.24.0",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/gack"]
[project.scripts]
gack = "gack.__main__:main"
gack-web = "gack.web_server:main"