-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.1 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
[tool.poetry]
name = "api-python"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.5"
mangum = "^0.19.0"
pydantic = "^2.9.2"
pydantic-extra-types = "^2.10.0"
python-multipart = "^0.0.17"
shortuuid = "^1.0.13"
email-validator = "^2.2.0"
psycopg = "^3.2.3"
stripe = "^11.3.0"
firebase-admin = "^6.6.0"
pyjwt = "^2.10.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
isort = "^5.13.2"
uvicorn = "^0.32.0"
pytest-asyncio = "^0.24.0"
black = "^24.10.0"
requests = "^2.32.3"
httpx = "^0.28.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
python_classes = '*Test'
addopts = [
"--import-mode=importlib",
"--tb=line",
'--verbosity=2',
'--no-header',
'--color=yes',
]
console_output_style = "progress"
asyncio_default_fixture_loop_scope = "function"
markers = [
"unit: marks tests as unit tests",
"integration: marks tests requiring external services",
"e2e: marks tests as end-to-end tests",
]