mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2026-09-24 14:20:08 +01:00
64 lines
1.2 KiB
TOML
64 lines
1.2 KiB
TOML
# cspell:disable
|
|
[project]
|
|
authors = [{ name = "ThePhaseless", email = "kukubaorch@gmail.com" }]
|
|
license = { text = "LICENSE" }
|
|
requires-python = "==3.14.*"
|
|
name = "Byparr"
|
|
version = "0.1.0"
|
|
description = "API for getting cookies for Cloudflare challenges"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"fastapi[standard]==0.139.*",
|
|
"invisible-playwright>=0.4.9",
|
|
"playwright==1.60.*",
|
|
"playwright-captcha==0.1.*",
|
|
"pydantic==2.*",
|
|
"pydantic-settings==2.*",
|
|
]
|
|
urls = { repository = "https://github.com/ThePhaseless/Byparr" }
|
|
[dependency-groups]
|
|
|
|
test = [
|
|
"httpx==0.28.*",
|
|
"pytest==9.1.*",
|
|
"pytest-asyncio==1.4.*",
|
|
"pytest-retry==1.7.*",
|
|
"pytest-xdist==3.8.*",
|
|
"setuptools>=80.9.0",
|
|
]
|
|
dev = ["deptry==0.25.*", "ruff==0.16.*"]
|
|
[tool.deptry.per_rule_ignores]
|
|
DEP002 = ["pyautogui"]
|
|
[tool.ruff.lint]
|
|
ignore = [
|
|
"D203",
|
|
"D212",
|
|
"D100",
|
|
"D400",
|
|
"EM101",
|
|
"S101",
|
|
"D104",
|
|
"ANN201",
|
|
"TD003",
|
|
"PLR0913",
|
|
"ERA001",
|
|
"COM812",
|
|
"ISC001",
|
|
"TC003",
|
|
"TC002",
|
|
"TC001",
|
|
"TD002",
|
|
"E501",
|
|
"D101",
|
|
"G004",
|
|
"ANN001",
|
|
"ANN204",
|
|
"ANN206",
|
|
]
|
|
select = ["ALL"]
|
|
extend-safe-fixes = ["D415"]
|
|
|
|
[tool.pyright]
|
|
reportMissingTypeStubs = false
|
|
typeCheckingMode = "strict"
|