-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.12 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]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[project]
requires-python = "3.11"
[tool.black]
line-length = 120
[tool.coverage.report]
fail_under = 0
show_missing = true
[tool.coverage.run]
branch = true
omit = [
".mypy_cache/**/*",
".pytest_cache/**/*",
"app/main.py",
"app/tests/*",
"app/tests/**/*"
]
source = ["app"]
[tool.isort]
profile = "black"
[tool.mypy]
disallow_subclassing_any = false
exclude = "fabfile"
ignore_missing_imports = true
implicit_reexport = true
plugins = "pydantic.mypy"
python_version = "3.11"
show_error_codes = true
strict = true
[tool.poetry]
authors = ["aliwo <[email protected]>"]
description = ""
name = "yorigin"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
fastapi = "^0.95.2"
gunicorn = "^20.1.0"
httpx = "^0.24.1"
motor = "^3.1.2"
orjson = "^3.8.14"
python = "^3.11"
redis = "4.6.0"
uvicorn = "^0.22.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "^23.3.0"}
coverage = "^7.2.3"
isort = "^5.12.0"
mypy = "^1.3.0"
pytest = "^7.3.1"
pytest-asyncio = "^0.21.0"
toml-sort = "^0.23.0"
types-redis = "4.6.0.3"