forked from a16z/halmos
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 995 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2", "black"]
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.9"
dependencies = [
"z3-solver==4.12.2.0",
]
dynamic = ["version"]
[project.scripts]
halmos = "halmos.__main__:main"
[project.urls]
"Homepage" = "https://github.com/a16z/halmos"
[tool.black]
target-versions = ["py39", "py310", "py311"]
[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"