Files
Byparr/pyproject.toml
T
renovate[bot] 740efc573e fix(deps): update dependency fastapi to ==0.134.* (#323)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-28 01:00:34 +00:00

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 = [
"camoufox[geoip]==0.4.*",
"fastapi[standard]==0.134.*",
"playwright-captcha==0.1.*",
"pydantic==2.*",
]
urls = { repository = "https://github.com/ThePhaseless/Byparr" }
[dependency-groups]
test = [
"httpx==0.28.*",
"pytest==9.0.*",
"pytest-asyncio==1.3.*",
"pytest-retry==1.7.*",
"pytest-xdist==3.8.*",
"setuptools>=80.9.0",
]
dev = ["deptry==0.24.*", "ruff==0.15.*"]
[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"