-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 994 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 994 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
48
49
# generated by DipDup 8.3.1
[project]
name = "dipdup_mcp_tutorial"
version = "0.0.1"
description = "ERC-20 token transfers (from event logs)"
license = { text = "MIT" }
authors = [
{ name = "John Doe", email = "john_doe@example.com" },
]
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"dipdup>=8,<9",
]
[dependency-groups]
dev = [
"ruff>=0.9.2",
"mypy>=1.14.1",
]
[tool.ruff]
line-length = 120
target-version = 'py312'
[tool.ruff.lint]
extend-select = ["B", "C4", "FA", "G", "I", "PTH", "RET", "RUF", "TCH", "UP"]
isort = { force-single-line = true}
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
python_version = "3.12"
plugins = ["pydantic.mypy"]
explicit_package_bases = true
strict = false
exclude = "dipdup_mcp_tutorial"
[[tool.mypy.overrides]]
module = "ruamel"
ignore_missing_imports = true
[tool.hatch.build.targets.wheel]
packages = ["dipdup_mcp_tutorial"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"