forked from ThePhaseless/Byparr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (63 loc) · 1.29 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# cspell:disable
[project]
authors = [{ name = "ThePhaseless", email = "[email protected]" }]
license = { text = "LICENSE" }
requires-python = "<4.0,>=3.12"
name = "Byparr"
version = "0.1.0"
description = "API for getting cookies for Cloudflare challenges"
readme = "README.md"
dependencies = [
"beautifulsoup4==4.12.3",
"fastapi[standard]==0.115.6",
"psutil==6.1.1",
"pyautogui==0.9.54",
"pydantic==2.10.4",
"seleniumbase==4.33.11",
"uvicorn==0.34.0",
]
urls = { repository = "https://github.com/ThePhaseless/Byparr" }
[dependency-groups]
test = [
"httpx==0.28.1",
"pytest==8.3.4",
"pytest-asyncio==0.25.0",
"pytest-progress==1.3.0",
"pytest-retry==1.6.3",
"pytest-xdist==3.6.1",
]
dev = ["deptry==0.21.2", "ruff==0.8.4"]
[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.pytest]
log_cli = "True"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"