-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 849 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 849 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
[project]
name = "flyra-local-server"
version = "0.1.0"
description = "local backend for flyra drones"
authors = [
{name = "freit4sdev",email = "chelmizinho@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy (>=2.0.2,<2.1.0)",
"opencv-python (>=4.10.0.84,<4.11.0.0)",
"fastapi (>=0.115.6,<0.116.0)",
"starlette (>=0.41.3,<0.42.0)",
"uvicorn[standard] (>=0.34.3,<0.35.0)",
"setuptools (>=75.6.0,<75.7.0)",
"apscheduler (>=3.11.0,<3.12.0)",
"pika (>=1.3.2,<1.4.0)",
"rpi-bme280 (>=0.2.4,<0.3.0)",
"psutil (>=7.0.0,<8.0.0)",
"picamera2 (>=0.3.27,<0.4.0)"
]
[tool.poetry]
package-mode = false
packages = [{ include = "src" }]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dev = "src.main:main"