-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
114 lines (102 loc) · 2.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[tool.poetry]
name = "beamer"
version = "3.0.1"
description = "Bridging rollups with L1 guaranteed security"
authors = ["Beamer Bridge Team <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://www.beamerbridge.com/"
repository = "https://github.com/beamer-bridge/beamer"
documentation = "https://docs.beamerbridge.com/"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
web3 = "^6.10.0"
click = "^8.1.7"
structlog = "^23.1.0"
python-statemachine = "^2.1.1"
prometheus-client = "^0.17.1"
lru-dict = "^1.2.0"
toml = "^0.10.2"
atomics = "^1.0.2"
apischema = "^0.18.0"
xdg-base-dirs = "^6.0.1"
typing-extensions = "^4.8.0"
[tool.poetry.dev-dependencies]
freezegun = "^1.2.2"
types-pyyaml = "^6.0.12"
types-python-dateutil = "^2.8.19.14"
psutil = "^5.9.5"
eth-ape = "^0.6.20"
ape-solidity = "^0.6.9"
ape-ganache = "^0.6.8"
ape-alchemy = "^0.6.4"
ape-infura = "^0.6.4"
ape-optimism = "^0.6.2"
ape-arbitrum = "^0.6.4"
ape-etherscan = "^0.6.10"
ape-polygon-zkevm = "^0.1.1"
ape-base = "^0.6.1"
pytest = "^7.4.2"
black = "^23.9"
isort = "^5.12.0"
flake8 = "^6.0.0"
flake8-tuple = "^0.4.1"
flake8-bugbear = "^23.9.16"
mypy = "^1.5"
eth-account = "^0.8.0"
pylint = "^2.17.6"
ruff = "^0.0.292"
types-pkg-resources = "^0.1.3"
types-requests = "^2.31.0"
pdbpp = "^0.10.3"
pytest-cov = "^4.1.0"
shiv = "^1.0.4"
Sphinx = "^7.2.6"
furo = "^2023.9.10"
sphinxcontrib-mermaid = "^0.9"
sphinxcontrib-soliditydomain = {git = "https://github.com/beamer-bridge/sphinxcontrib-soliditydomain.git", rev = "main"}
sphinx-icon = "^0.2.2"
types-toml = "^0.10.8"
[tool.poetry.scripts]
beamer = 'beamer.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
include = '\.pyi?$'
extend-exclude = '''
/(
\.git
| \.mypy_cache
| dist
)/
'''
[tool.isort]
line_length = 99
profile = "black"
multi_line_output = 3
ignore_whitespace = true
[[tool.mypy.overrides]]
module = ["ape.*", "twisted.*"]
ignore_missing_imports = true
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
ignore_missing_imports = true
check_untyped_defs = true
warn_unused_ignores = true
strict_equality = true
disallow_untyped_defs = true
explicit_package_bases = true
[[tool.mypy.overrides]]
module = ["beamer.tests.*"]
disallow_untyped_defs = false
disable_error_code = "attr-defined,name-defined"
[tool.pytest.ini_options]
filterwarnings = "ignore:Development network has a block height of"
[tool.coverage.run]
source = ["beamer"]
omit = ["beamer/tests/*"]
[tool.ruff]
line-length = 99