-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 837 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
34
35
36
[tool.poetry]
name = "fast_api_sandbox"
version = "0.1.0"
description = ""
authors = ["csestelo <sestelos@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.75.0"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
SQLAlchemy = "^1.4.34"
asyncpg = "^0.25.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^22.3.0"
mypy = "^0.942"
coverage = "^6.3.2"
requests = "^2.27.1"
httpx = "^0.22.0"
pytest-trio = "^0.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "tests/*"]
[tool.coverage.report]
fail_under = 90
[tool.mypy]
# sqlalchemy 2.0 will have type hint support built-in, sqlmypy is considered
# deprecated: https://docs.sqlalchemy.org/en/14/orm/extensions/mypy.html
ignore_missing_imports = true