2024-07-24 13:57:40 +00:00
|
|
|
[tool.poetry]
|
2024-11-28 12:32:55 +00:00
|
|
|
name = "Byparr"
|
2024-07-24 13:57:40 +00:00
|
|
|
version = "0.1.0"
|
2024-11-28 12:32:55 +00:00
|
|
|
description = "API for getting cookies for Cloudflare challenges"
|
2024-07-24 13:57:40 +00:00
|
|
|
package-mode = false
|
2024-11-28 12:32:55 +00:00
|
|
|
authors = ["ThePhaseless <kukubaorch@gmail.com>"]
|
2024-07-24 13:57:40 +00:00
|
|
|
readme = "README.md"
|
2024-11-28 12:32:55 +00:00
|
|
|
license = "LICENSE"
|
|
|
|
repository = "https://github.com/ThePhaseless/Byparr"
|
2024-07-24 13:57:40 +00:00
|
|
|
|
2024-11-28 12:32:55 +00:00
|
|
|
# cspell:disable
|
2024-07-24 13:57:40 +00:00
|
|
|
[tool.poetry.dependencies]
|
2024-09-13 18:40:34 +00:00
|
|
|
python = "^3.12"
|
2024-10-28 17:20:32 +00:00
|
|
|
fastapi = { extras = ["standard"], version = "^0" }
|
2024-11-28 12:32:55 +00:00
|
|
|
seleniumbase = "^4.33.1"
|
2024-11-24 23:04:19 +00:00
|
|
|
beautifulsoup4 = "^4.12.3"
|
2024-11-28 12:32:55 +00:00
|
|
|
uvicorn = "^0.32.1"
|
|
|
|
pydantic = "^2.10.2"
|
2024-11-28 12:55:55 +00:00
|
|
|
pyautogui = "^0.9.54"
|
2024-11-28 12:32:55 +00:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
ruff = "^0.8.0"
|
|
|
|
deptry = "^0.21.1"
|
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
pytest = "^8.3.3"
|
2024-11-28 18:20:06 +00:00
|
|
|
httpx = "^0.28.0"
|
2024-11-25 09:55:46 +00:00
|
|
|
pytest-retry = "^1.6.3"
|
2024-11-25 10:55:40 +00:00
|
|
|
pytest-progress = "^1.3.0"
|
2024-11-28 12:32:55 +00:00
|
|
|
pytest-asyncio = "^0"
|
2024-11-26 17:43:25 +00:00
|
|
|
pytest-xdist = "^3.6.1"
|
2024-07-24 13:57:40 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
2024-11-28 12:55:55 +00:00
|
|
|
[tool.deptry.per_rule_ignores]
|
|
|
|
DEP002 = ["pyautogui"]
|
|
|
|
|
2024-07-24 13:57:40 +00:00
|
|
|
[tool.ruff.lint]
|
|
|
|
ignore = [
|
|
|
|
"D203",
|
|
|
|
"D212",
|
|
|
|
"D100",
|
|
|
|
"D400",
|
|
|
|
"EM101",
|
|
|
|
"S101",
|
|
|
|
"D104",
|
|
|
|
"ANN201",
|
|
|
|
"TD003",
|
|
|
|
"PLR0913",
|
|
|
|
"ERA001",
|
|
|
|
"COM812",
|
|
|
|
"ISC001",
|
2024-11-24 22:00:58 +00:00
|
|
|
"TC003",
|
|
|
|
"TC002",
|
|
|
|
"TC001",
|
2024-07-24 13:57:40 +00:00
|
|
|
"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"
|