-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1014 Bytes
/
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
52
53
54
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "WARN"
[tool.poetry]
name = "energy-dev-case"
version = "0.1.0"
description = ""
authors = ["Guillermo Enrique Sánchez de Abreu <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
sqlalchemy = "^2.0.27"
fastapi = "^0.109.2"
pydantic = "^2.3.0"
psycopg2-binary = "^2.9.5"
uvicorn = "^0.27.1"
pyyaml = "^6.0"
aiofiles = "^23.2.1"
python-multipart = "^0.0.9"
starlette-exporter = "^0.21.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.14"
[tool.poetry.group.test.dependencies]
pytest-mock = "^3.10.0"
pytest = "^7.2.1"
testcontainers-postgres = "^0.0.1rc1"
httpx = "^0.23.3"
coverage = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
env_list =
py312
py311
py310
py39
py38
[testenv]
skip_install = true
allowlist_externals = poetry
"""