45 lines
865 B
TOML
45 lines
865 B
TOML
[tool.poetry]
|
|
name = "resa-padel"
|
|
version = "0.1.0"
|
|
description = "Book padel courts to gestion-sports.com"
|
|
authors = ["stanislas <stanislas@jouf.fr>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
pyyaml = "^6.0.1"
|
|
aiohttp = "^3.9.3"
|
|
pendulum = "^3.0.0"
|
|
pydantic = "^2.6.1"
|
|
pydantic-extra-types = "^2.5.0"
|
|
python-dotenv = "^1.0.1"
|
|
jinja2 = "^3.1.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.1.1"
|
|
pytest = "^8.0.0"
|
|
isort = "^5.13.2"
|
|
ruff = "^0.2.1"
|
|
pytest-sugar = "^1.0.0"
|
|
pytest-icdiff = "^0.9"
|
|
pytest-asyncio = "^0.23.5"
|
|
pytest-aioresponses = "^0.2.0"
|
|
pre-commit = "^3.6.2"
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = [
|
|
"resa_padel"
|
|
]
|
|
log_cli = 1
|
|
log_cli_level = "DEBUG"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|