-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 831 Bytes
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
[tool.poetry]
name = "joi-delivery"
version = "0.1.0"
description = "A thoughtful, technology-first food and grocery delivery platform"
authors = ["Aida Sabaghmoghadam <aida.sabaghmoghadam@thoughtworks.com>"]
readme = "README.md"
packages = [{ include = "joi_delivery", from = "src" }]
[tool.poetry.scripts]
app = "joi_delivery.main:main"
[tool.poetry.dependencies]
fastapi = "^0.110.1"
httpx = "^0.27.0"
loguru = "^0.7.2"
python = "^3.12"
uvicorn = "^0.29.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.5"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
lint.select = ["I00", "E", "F", "W"]
lint.ignore = ["E731"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["INP001"]