Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"art>=6",
Expand Down Expand Up @@ -46,20 +47,26 @@ Homepage = "https://github.com/gnosis/safe-cli"

[dependency-groups]
dev = [
"coverage==7.13.4",
"flake8==7.3.0",
"coverage",
"flake8",
"hatch",
"ipdb",
"ipython",
"isort",
"pre-commit",
"pytest==9.0.2",
"pytest-sugar==1.1.1",
"pytest",
"pytest-sugar",
]

[tool.hatch.version]
path = "src/safe_cli/__init__.py"

[tool.uv]
# Reject packages published less than 7 days ago to avoid supply-chain attacks
exclude-newer = "7 days"
compile-bytecode = true
exclude-newer-package = { safe-eth-py = false }

[tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"]

Expand Down Expand Up @@ -112,13 +119,8 @@ sections = [
"LOCALFOLDER",
]

[tool.uv]
# Reject packages published less than 7 days ago to avoid supply-chain attacks
exclude-newer = "7 days"
compile-bytecode = true

[tool.mypy]
python_version = "3.12"
python_version = "3.13"
check_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
Expand Down
Loading
Loading