-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.38 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
[project]
name = "fishing-dock-api"
version = "0.0.1"
description = "Fishing Dock API for review Video Games"
authors = [
{name = "Emerson Silva"}
]
license = {text = "MIT 1.0"}
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"python-dotenv (>=1.2.1,<2.0.0)",
"loguru (>=0.7.3,<0.8.0)",
"pyjwt (>=2.10.1,<3.0.0)",
"fastapi (>=0.128.0,<0.129.0)",
"uvicorn (>=0.40.0,<0.41.0)",
"sqlmodel (>=0.0.31,<0.0.32)",
"aiosqlite (>=0.22.1,<0.23.0)",
"pytest-asyncio (>=1.3.0,<2.0.0)",
"pytest (>=9.0.2,<10.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"alembic (>=1.18.4,<2.0.0)",
"pymysql (>=1.1.2,<2.0.0)",
"aiomysql (>=0.3.2,<0.4.0)",
"findacat (>=1.0.0,<2.0.0)",
"pillow (>=12.1.1,<13.0.0)",
"python-multipart (>=0.0.22,<0.0.23)"
]
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/__pycache__/*"]
[tool.coverage.report]
fail_under = 80
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
]
[dependency-groups]
dev = [
"httpx (>=0.28.1,<0.29.0)"
]