-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
42 lines (36 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
[tool.poetry]
name = "drone-control-system"
version = "0.1.0"
description = "Sistema de control de drones con FastAPI y YepCode"
authors = ["Tu Nombre <tu.email@example.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "app"}]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.119.0" # Última versión estable
pydantic = "^2.12.3" # Última versión estable
httpx = "^0.28.1" # Última versión estable
paho-mqtt = "^2.1.0" # Última versión estable
pytest = "^8.4.2" # Última versión estable
pytest-asyncio = "^1.2.0" # Última versión estable
pytest-mock = "^3.15.1" # Última versión estable
pytest-cov = "^7.0.0" # Última versión estable
motor = "^3.7.1"
beanie = "^2.0.0"
uvicorn = "^0.37.0"
dotenv = "^0.9.9"
aiomqtt = "^2.4.0"
pydantic-settings = "^2.11.0"
aiohttp = "^3.13.1"
schedule = "^1.2.0"
google-genai = "^1.45.0"
protobuf = "^6.33.0"
[tool.poetry.dev-dependencies]
pytest = "^8.4.2"
pytest-asyncio = "^1.2.0"
pytest-mock = "^3.15.1"
pytest-cov = "^7.0.0"
[build-system]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"