-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
75 lines (66 loc) · 1.33 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
71
72
73
74
75
[project]
name = "fordefi-sdk"
version = "0.6.7"
description = "Fordefi SDK"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic==2.9.2",
"ecdsa==0.13.3",
"typer>=0.15.1",
"requests==2.31.0",
"eth-pydantic-types>=0.1.3",
"eth-hash[pycryptodome]>=0.7.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["fordefi"]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"CPY001",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101",
"ARG002",
"SLF001",
"FBT001",
"FBT003",
]
[tool.uv]
dev-dependencies = [
"pyright>=1.1.395",
"pytest>=8.3.4",
"httpretty>=1.1.4",
"pytest-httpserver>=1.1.1",
"pytest-cov>=6.0.0",
"pytest-recording==0.13.2",
"uv>=0.5.31",
"pyperclip>=1.9.0",
"ruff>=0.9.6",
"openapi-core>=0.19.4",
"openapi-spec-validator>=0.7.1",
"glom>=24.11.0",
"datamodel-code-generator>=0.28.2",
"polyfactory>=2.19.0",
"eth-account>=0.13.5",
"radon>=6.0.1",
"xenon>=0.9.3",
"pre-commit>=4.1.0",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
reportPrivateLocalImportUsage = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"def __str__",
"if TYPE_CHECKING",
"if __name__ == \"__main__\":",
]