-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
20 lines (20 loc) · 1015 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[project]
name = "route-manager-api"
version = "0.1.0"
description = "A REST API developed with FastAPI for managing network routes on a Linux machine using the ip command. It allows you to query active routes, create new routes, and delete existing routes, with token-based authentication and persistence of scheduled routes to ensure their availability even after service restarts."
authors = [
{name = "Jesús Macias Portela", email="[email protected]"},
{name= "Álvaro Curto Merino", email="[email protected]"},
{name="Ana Isabel Lara García", email="[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.12"
dependencies = [
"fastapi[standard]>=0.115.7",
"httptools>=0.6.4", # Faster than Python's default asyncio HTTP parser
"psutil>=6.1.1",
"pydantic-settings>=2.7.1",
"sqlmodel>=0.0.22",
"uvloop>=0.21.0", # Faster than Python's default asyncio event loop
]