-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) 路 775 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) 路 775 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
[tool.poetry]
name = "pyfa-converter-v2"
version = "2.0.0rc1"
description = "Pydantic to FastAPI model converter."
authors = ["Egor Ternovoy <cofob@riseup.net>"]
license = "LGPL-3.0-only"
homepage = "https://github.com/cofob/pyfa-converter-v2"
repository = "https://github.com/cofob/pyfa-converter-v2"
readme = "README.md"
[tool.poetry.dependencies]
python = ">= 3.8.1, < 4.0"
fastapi = ">= 0.100"
pydantic = ">= 2"
[tool.poetry.dev-dependencies]
pytest = "^6.0.0"
httpx = "^0.23.0"
pytest_asyncio = "^0.19.0"
pytest-mock = "*"
mypy = "^1"
black = "^23.10.1"
isort = "^5.12.0"
python-multipart = "^0.0.5"
flake8 = "^6.1.0"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py38']