-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.57 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
[tool.poetry]
name = "fastapi_gateway_auto_generate"
version = "0.3.2"
description = "This library allows you to automatically generate requests for the API Gateway."
authors = ["Kalinka George <xitowzys@gmail.com>"]
license = "MIT License"
keywords = [
"python",
"fastapi",
"gateway",
"api",
"microservice",
"microservices",
]
homepage = "https://github.com/gnss-lab/FastAPI-Auto-Generate-Gateway"
repository = "https://github.com/gnss-lab/FastAPI-Auto-Generate-Gateway"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
datamodel-code-generator = "^0.14.0"
loguru = "^0.7.0"
fastapi = "^0.88.0"
sqlalchemy = "^1.4.44"
validators = "^0.20.0"
alembic = "^1.8.1"
fastapi-gateway-ultra = { git = "https://github.com/gnss-lab/FastAPI-Gateway-Ultra.git", tag = "0.1.1-SNAPSHOT" }
python-multipart = "^0.0.5"
shortuuid = "^1.0.11"
rich = "^13.3.2"
fastapi-openapi-parser = { git = "https://github.com/gnss-lab/FastAPI-OpenAPI-Parser.git", tag = "1.1.1-SNAPSHOT" }
[tool.poetry.group.dev.dependencies]
uvicorn = "^0.20.0"
autopep8 = "^2.0.0"
mkdocs-material = "^8.5.11"
termynal = "^0.2.0"
#mkdocstrings = "^0.21.2"
mkdocstrings = { extras = ["python"], version = "^0.21.2" }
[tool.poetry.group.tests.dependencies]
faker = "^18.6.0"
httpx = "^0.24.0"
runtime-type-checker = "^0.5.0"
coverage = "^6.5.0"
allure-pytest = "^2.12.0"
pytest = "^7.2.0"
pytest-env = "^0.8.1"
coverage-badge = "^1.1.0"
[build-system]
requires = [
"poetry-core>=1.0.0",
"wheel>=0.36,<1.0",
"poetry>=1.1,<2",
"virtualenv==20.0.33",
]
build-backend = "poetry.core.masonry.api"