mirror of
https://github.com/Cian-H/I-Form_Server_Node_Deployer.git
synced 2026-05-13 11:21:51 +01:00
Fully working locally
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user