-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 881 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 = "sqlalchemy-fastapi-endpoint-factory"
version = "1.0.1"
description = "Auto generate FastAPI endpoint by SqlAlchemy model for data access"
readme = "README.md"
authors = [
{ name = "Pavel Maksimov", email = "vur21@yandex.ru" }
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[dependency-groups]
dev = [
"fastapi>=0.115.12",
"httpx>=0.28.1",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"sqlalchemy>=2.0.40",
"uvicorn>=0.34.1",
"aiosqlite>=0.21.0",
]
[project.urls]
"Homepage" = "https://github.com/pavelmaksimov/data-endpoint-factory"
"Bug Tracker" = "https://github.com/pavelmaksimov/data-endpoint-factory/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"