2024-07-24 13:57:40 +00:00
|
|
|
[tool.poetry]
|
2024-07-24 20:37:39 +00:00
|
|
|
name = "byparr"
|
2024-07-24 13:57:40 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
package-mode = false
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-09-13 18:40:34 +00:00
|
|
|
python = "^3.12"
|
2024-10-28 17:20:32 +00:00
|
|
|
pytest = "^8"
|
|
|
|
fastapi = { extras = ["standard"], version = "^0" }
|
|
|
|
nodriver = "^0"
|
|
|
|
requests = "^2"
|
|
|
|
httpx = "^0"
|
|
|
|
pytest-asyncio = "^0"
|
2024-07-24 13:57:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
ignore = [
|
|
|
|
"D203",
|
|
|
|
"D212",
|
|
|
|
"D100",
|
|
|
|
"D400",
|
|
|
|
"EM101",
|
|
|
|
"S101",
|
|
|
|
"D104",
|
|
|
|
"ANN201",
|
|
|
|
"TD003",
|
|
|
|
"PLR0913",
|
|
|
|
"ERA001",
|
|
|
|
"COM812",
|
|
|
|
"ISC001",
|
|
|
|
"TCH003",
|
|
|
|
"TCH002",
|
|
|
|
"TCH001",
|
|
|
|
"TD002",
|
|
|
|
"E501",
|
|
|
|
"D101",
|
|
|
|
"G004",
|
|
|
|
"ANN001",
|
|
|
|
"ANN204",
|
2024-07-24 15:52:41 +00:00
|
|
|
"ANN206",
|
2024-07-24 13:57:40 +00:00
|
|
|
]
|
|
|
|
select = ["ALL"]
|
|
|
|
extend-safe-fixes = ["D415"]
|
2024-10-18 16:03:17 +00:00
|
|
|
|
2024-10-21 13:46:26 +00:00
|
|
|
[tool.pytest]
|
|
|
|
log_cli = "True"
|
|
|
|
|
2024-10-18 16:03:17 +00:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
asyncio_default_fixture_loop_scope = "function"
|