-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (72 loc) · 1.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "wacruit-server"
version = "0.1.0"
description = ""
authors = [{ name = "shinhong-park", email = "shinhong.park@linecorp.com" }]
requires-python = ">=3.11, <3.12"
readme = "README.md"
dependencies = [
"fastapi>=0.95.1,<0.96",
"sqlalchemy>=2.0.13,<3",
"loguru>=0.7.0,<0.8",
"python-dotenv>=1.0.0,<2",
"uvicorn>=0.22.0,<0.23",
"bcrypt>=4.0.1,<5",
"alembic>=1.11.1,<2",
"mysqlclient==2.2.4",
"aws-secretsmanager-caching>=1.1.1.5,<2",
"sse-starlette>=1.6.1,<2",
"httpx>=0.24.1,<0.25",
"email-validator>=2.0.0.post2,<3",
"boto3>=1.28.3,<2",
"sqladmin>=0.16.0,<0.17",
"itsdangerous>=2.1.2,<3",
"pyjwt>=2.8.0,<3",
"pytest-mock==3.8.2",
"moto[ec2, s3]==4.2.7",
"tenacity>=9.0.0,<10",
"pyyaml==6.0.2",
"argon2-cffi>=25.1.0,<26",
"authlib>=1.6.5,<2",
"oci>=2.168.1",
]
[dependency-groups]
dev = [
"pytest>=7.3.1,<8",
"pre-commit>=3.3.1,<4",
"devtools>=0.11.0,<0.12",
"pyright>=1.1.314,<2",
"ruff>=0.15.9",
]
[tool.hatch.build.targets.sdist]
include = ["wacruit"]
[tool.hatch.build.targets.wheel]
include = ["wacruit"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.pyright]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/migrations/versions",
]
venvPath = "."
venv = ".venv"
[tool.ruff]
line-length = 88
exclude = [
"**/database/migrations/env.py",
"**/migrations/versions",
"**/node_modules",
"**/__pycache__",
]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "PL"]
[tool.ruff.lint.isort]
force-sort-within-sections = true
force-single-line = true