generated from ApeWorX/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (43 loc) · 1.27 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
[build-system]
requires = ["setuptools>=75.0.0", "wheel", "setuptools_scm[toml]>=5.0"]
[tool.mypy]
exclude = "build/"
[tool.setuptools_scm]
write_to = "ape_titanoboa/version.py"
# NOTE: you have to use single-quoted strings in TOML for regular expressions.
# It's the equivalent of r-strings in Python. Multiline strings are treated as
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312', 'py313']
include = '\.pyi?$'
[tool.ape]
contracts_folder = "tests/contracts"
[tool.ape.titanoboa.fork.ethereum.sepolia]
upstream_provider = "alchemy"
block_identifier = 7341111
[tool.ape.titanoboa.fork.ethereum.holesky]
upstream_provider = "alchemy"
block_identifier = 3071111
[tool.ape.titanoboa.fork.ethereum.mainnet]
upstream_provider = "alchemy"
block_identifier = 21551111
[tool.ape.ethereum.local]
default_provider = "boa"
[tool.ape.test]
show_internal = true
[tool.pytest.ini_options]
addopts = """
-p no:pytest_ethereum
-p no:boa_test
"""
python_files = "test_*.py"
testpaths = "tests"
markers = "fuzzing: Run Hypothesis fuzz test suite"
[tool.isort]
line_length = 100
force_grid_wrap = 0
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true