-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 904 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 904 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
[tool.poetry]
name = "ape-roll"
version = "0.0.3"
description = "Build weiroll transactions with ape"
authors = ["FP <fp@noemail.com>"]
license = "MIT"
packages = [
{ include = "ape_roll" },
]
readme = "README.md"
homepage = "https://github.com/fp-crypto/ape-roll"
repository = "https://github.com/fp-crypto/ape-roll"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
eth-ape = "^0.6.18"
[tool.poetry.dev-dependencies]
pytest = ">=6.0"
pytest-xdist = "^3.3.1"
pytest-cov = "^4.1.0"
hypothesis = ">=6.2.0,<7.0"
black = "^23.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
# NOTE: can't use xdist
addopts = """
-n 0
--cov-branch
--cov-report term
--cov-report html
--cov-report xml
--cov=ape_roll
"""
python_files = "test_*.py"
testpaths = "tests"
markers = "fuzzing: Run Hypothesis fuzz test suite"