forked from kkrt-labs/kakarot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 832 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
[tool.poetry]
name = "kakarot"
version = "0.1.0"
description = "EVM interpreter written in Cairo, a sort of ZK-EVM emulator, leveraging STARK proof system."
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
cairo-lang = "^0.10.1"
openzeppelin-cairo-contracts = "0.4.0"
[tool.poetry.group.dev.dependencies]
cairo-coverage = "^0.1.0"
black = "^22.10.0"
isort = "^5.10.1"
marshmallow-dataclass = "^8.5.9"
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = [
'ignore:Using or importing the ABCs:DeprecationWarning', # from frozendict
'ignore:lexer_state will be removed in subsequent releases. Use lexer_thread instead.', # from lark
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"