-
Notifications
You must be signed in to change notification settings - Fork 70
/
pyproject.toml
60 lines (53 loc) · 1.31 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "halmos"
description = "A symbolic testing tool for EVM smart contracts"
readme = "README.md"
authors = [
{ name="a16z crypto" },
]
maintainers = [
{ name="Daejun Park" },
{ name="karmacoma <[email protected]>" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"sortedcontainers>=2.4.0",
"toml>=0.10.2",
"z3-solver==4.12.6.0",
"eth_hash[pysha3]>=0.7.0"
]
dynamic = ["version"]
[project.scripts]
halmos = "halmos.__main__:main"
[project.urls]
"Homepage" = "https://github.com/a16z/halmos"
[tool.black]
target-version = ["py311", "py312"]
[tool.pytest.ini_options]
# TODO: re-add test_traces.py when we have a better way to support it in CI
addopts = "--ignore=tests/lib --ignore=tests/test_traces.py"
# addopts = "--ignore=tests/lib"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM",# flake8-simplify
"I", # isort
]
ignore = [
"E501", # line too long
]
exclude = [
"tests/lib/**"
]