-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1018 Bytes
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
[project]
name = "xtreamfilter"
version = "0.5.8"
description = "A Docker-based Xtream Codes proxy that filters IPTV content with advanced per-category rules, caching, Telegram notifications, and download support."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"httpx>=0.28.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.20",
"rapidfuzz>=3.0.0",
"lxml>=5.0.0",
"packaging>=24.0",
"aiosqlite>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.4.0",
"httpx",
"playwright>=1.40.0",
"pytest-playwright>=0.5.0",
]
[tool.ruff]
target-version = "py313"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "C4", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.11",
]