-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.58 KB
/
pyproject.toml
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
60
61
62
63
64
[build-system]
requires = ["poetry-core==2"]
build-backend = "poetry.core.masonry.api"
[project]
name = "auto-rest-api"
version = "0.0.0"
readme = "README.md"
description = "Automatically map database schemas and deploy per-table REST API endpoints."
authors = [{ name = "Better HPC LLC" }]
license = "GPL-3.0-only"
keywords = ["Better", "HPC", "automatic", "rest", "api"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development",
"Typing :: Typed"
]
requires-python = ">=3.11,<4"
dependencies = [
"aiomysql~=0.2",
"aioodbc~=0.5",
"aiosqlite~=0.20",
"asgi-correlation-id (>=4.3.4,<5.0.0)",
"asyncpg~=0.30",
"colorlog (>=6.9.0,<7.0.0)",
"fastapi~=0.115",
"greenlet~=3.1",
"httpx~=0.28",
"oracledb~=2.5",
"pydantic~=2.10",
"pyyaml (>=6.0.2,<7.0.0)",
"sqlalchemy~=2.0",
"uvicorn~=0.34",
]
[tool.poetry]
packages = [
{ include = "auto_rest" },
]
[tool.poetry.group.tests.dependencies]
coverage = "*"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.49"
mkdocstrings-python = "^1.13.0"
[tool.poetry.scripts]
auto-rest = "auto_rest.__main__:main"
[tool.coverage.run]
branch = true
source = ["auto_rest"]
omit = ["tests/*"]