forked from doganarif/fastapi-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (56 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
59 lines (56 loc) · 1.54 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
55
56
57
58
59
[project]
name = "fastapi-radar"
version = "0.2.0"
description = "A debugging dashboard for FastAPI applications with real-time monitoring"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "Arif Dogan", email = "me@arif.sh" }]
keywords = [
"fastapi",
"debugging",
"monitoring",
"dashboard",
"development-tools",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: FastAPI",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastapi",
# SQLAlchemy 2.x required for latest duckdb-engine compatibility
"sqlalchemy>=2.0",
"pydantic",
"starlette",
# DuckDB + dialect (pinned for compatibility)
"duckdb==1.1.3",
"duckdb-engine==0.17.0",
"aiosqlite>=0.21.0",
]
[project.urls]
"Homepage" = "https://github.com/doganarif/fastapi-radar"
"Bug Reports" = "https://github.com/doganarif/fastapi-radar/issues"
"Source" = "https://github.com/doganarif/fastapi-radar"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"uvicorn[standard]",
"black",
"isort",
"flake8",
"mypy",
"httpx",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"