-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (63 loc) · 1.59 KB
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
69
70
[project]
name = "ethena_sats_adapters"
version = "0.1.0"
description = ""
requires-python = ">3.12,<3.13"
readme = "README.md"
dependencies = [
"datetime==6.0",
"web3==7.15.0",
"python-dotenv==1.2.2",
"requests==2.33.1",
"tqdm==4.67.3",
"rich==15.0.0",
"types-requests==2.33.0.20260408",
]
[dependency-groups]
dev = [
]
[tool.uv]
exclude-newer = "10 days"
override-dependencies = [
"aiohttp>=3.14.1", # CVE-2026-34993, CVE-2026-47265, CVE-2026-54273/54274/54276/54277/54278
"Pygments>=2.20.0",
"urllib3>=2.7.0",
"idna>=3.15", # CVE-2026-45409
]
[tool.ruff]
target-version = "py312"
line-length = 130
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"ARG", # flake8-unused-arguments
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
"PTH", # flake8-use-pathlib
"ERA", # eradicate
"PL", # Pylint
"TRY", # tryceratops
"RUF", # Ruff-specific rules
]
ignore = [
"E501", # line too long (handled by formatter)
"PLR0913", # too many arguments
"PLR0912", # too many branches
"PLR0915", # too many statements
"TRY003", # avoid long messages outside exception class
"TRY300", # consider moving to else block
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["PLR2004", "S101"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"