-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 971 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
[project]
name = "ethdebug"
version = "0.1.0"
description = "EthDebug library for Python"
authors = [{ name = "Raoul Schaffranek", email = "raoul.schaffranek@runtimeverification.com" }]
requires-python = ">=3.9,<4"
readme = "README.md"
license = { text = "MIT" }
dependencies = [
"eth-hash[pycryptodome]>=0.7.1",
"pydantic (>=2.11.3,<3.0.0)",
"pytest-cov>=6.1.1",
]
[dependency-groups]
dev = [
"datamodel-code-generator",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"requests>=2.32.5",
]
[tool.pytest.ini_options]
testpaths = ["src/tests"]
pythonpath = ["src"]
[tool.uv]
[tool.uv.sources]
datamodel-code-generator = { path = "./datamodel-code-generator", editable = true }
[tool.hatch.build.targets.sdist]
include = ["src/ethdebug"]
[tool.hatch.build.targets.wheel]
include = ["src/ethdebug"]
[tool.hatch.build.targets.wheel.sources]
"src/ethdebug" = "ethdebug"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"