-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (57 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
68 lines (57 loc) · 1.33 KB
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
65
66
67
68
[tool.poetry]
name = "tellingme-python-server"
version = "0.1.0"
description = ""
authors = ["Dae-Jeong <v4chelsea@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["standard"], version = "^0.115.0"}
gunicorn = "^23.0.0"
greenlet = "^3.1.1"
python-multipart = "^0.0.12"
pydantic-settings = "^2.5.2"
python-dotenv = "^1.0.1"
cryptography = "^43.0.1"
httpx = "^0.27.2"
tortoise-orm = {version = "^0.21.6", extras = ["aiomysql"]}
celery = {extras = ["sqlalchemy"], version = "^5.4.0"}
apscheduler = "^3.11.0"
redis = "^5.2.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
mypy = "^1.11.2"
black = "^24.8.0"
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
mypy-extensions = "^1.0.0"
coverage = "^7.6.8"
celery-stubs = "^0.1.3"
ruff = "^0.11.12"
time-machine = "^2.16.0"
[tool.mypy]
python_version = "3.12"
strict = true
plugins = [
"pydantic.mypy",
"sqlalchemy.ext.mypy.plugin"
]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = [
"E501", # Line too long
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
concurrency = ["greenlet"]
[tool.coverage.report]
fail_under = 92