Fully working locally

This commit is contained in:
Cian Hughes
2023-10-24 15:31:36 +01:00
parent 4cf0e4267c
commit 2a8d3c21fe
10 changed files with 620 additions and 228 deletions
+46
View File
@@ -11,8 +11,54 @@ typer = {extras = ["all"], version = "^0.9.0"}
selenium = "^4.14.0"
mechanicalsoup = "^1.3.0"
docker = "^6.1.3"
requests = "^2.31.0"
gitpython = "^3.1.40"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.1"
black = "^23.10.1"
snoop = "^0.4.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
line-length = 100
select = ["E", "F"]
[tool.ruff.isort]
force-sort-within-sections = true
lines-after-imports = 2
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"