Able to connect to github

This commit is contained in:
Stanislas Jouffroy 2024-09-23 23:45:22 +02:00
parent 9c4441ec63
commit a5c99c2d06
13 changed files with 313 additions and 0 deletions

35
pyproject.toml Normal file
View file

@ -0,0 +1,35 @@
[project]
name = "Booker"
version = "0.1.0"
dependencies = [
"pydantic>=2.8.2,<3.0.0",
"pydantic-settings>=2.4.0,<3.0.0",
"pyyaml>=6.0,<7.0",
"pendulum>=3.0.0,<4.0.0",
"requests>=2.32.3,<3.0.0",
"typer>=0.12.5,<0.13.0"
]
[project.optional-dependencies]
dev = [
"black>=24.4.2,<25.0.0",
"isort>=5.13.2,<6.0.0",
"ruff>=0.5.4,<0.6.0",
"pytest>=8.3.1,<9.0.0",
"pytest-icdiff>=0.9,<1.0",
"pytest-sugar>=1.0.0,<2.0.0",
]
[tool.ruff]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
log_cli = 1
log_cli_level = "DEBUG"