-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.14 KB
/
pyproject.toml
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
[tool.poetry]
name = "joyofenergy"
version = "0.1.5"
description = ""
authors = [
"Albert Attard <[email protected]>",
"Baran Demir <[email protected]>",
"Björn Eberhardt <[email protected]>",
"Dan Lafeir <[email protected]>",
"Ina Hartmann <[email protected]>",
"Jaydeep Chakrabarty <[email protected]>",
"Martin Soto <[email protected]>",
"Nilakhya Chatterjee <[email protected]>",
]
readme = "README.md"
packages = [{ include = "src" }]
[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.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
[tool.poetry.group.ci]
optional = true
[tool.poetry.group.ci.dependencies]
ruff = "^0.3.5"
black = "^24.3.0"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
lint.select = ["I00", "E", "F", "W"]
[tool.black]
line-length = 120
target-version = ['py39']