-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (33 loc) · 882 Bytes
/
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
[tool.poetry]
name = "pyfa-converter"
version = "1.0.4.0"
description = "Pydantic to fastapi model converter."
authors = ["dotX12 <[email protected]>"]
license = "MIT License"
homepage = "https://github.com/dotX12/pyfa-converter"
repository = "https://github.com/dotX12/pyfa-converter"
readme = "README.md"
include = [
"README.md",
"LICENSE.md"
]
[tool.poetry.dependencies]
python = ">= 3.8"
fastapi = ">= 0.65"
pydantic = ">= 1.6"
python-multipart = ">= 0.0.5"
[tool.poetry.dev-dependencies]
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^6.0.0"
httpx = "^0.23.0"
pytest_asyncio = "^0.19.0"
pytest-mock = "*"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-scoped"
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning"]