Initalized git repo, added basic files and a logger

This commit is contained in:
Stanislas Jouffroy 2024-02-11 00:43:10 +01:00
parent 50835e924c
commit aa155b2748
10 changed files with 479 additions and 0 deletions

23
pyproject.toml Normal file
View file

@ -0,0 +1,23 @@
[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"
[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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"