This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
79 lines (71 loc) · 1.79 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
[tool.poetry]
name = "starknet_devnet"
version = "0.6.3"
description = "A local testnet for Starknet"
authors = ["FabijanC <fabijan.corak@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/0xSpaceShard/starknet-devnet"
homepage = "https://github.com/0xSpaceShard/starknet-devnet"
keywords = ["starknet", "cairo", "testnet", "local", "server"]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
Flask = {extras = ["async"], version = "~2.0.3"}
flask-cors = "~3.0.10"
cairo-lang = "0.12.2"
Werkzeug = "~2.0.3"
cloudpickle = "~2.1.0"
crypto-cpp-py = "~1.4.0"
marshmallow = "~3.17.0"
typing-extensions = "~4.3.0"
gunicorn = "~20.1.0"
marshmallow-dataclass = "~8.4"
jsonschema = "~4.17.0"
web3 = "~6.0.0"
poseidon-py = "~0.1.3"
pyyaml = "~6.0.1"
[tool.poetry.group.dev.dependencies]
pylint = "~2.12.2"
psutil = "~5.9.1"
pytest-xdist = "~2.5.0"
pylint-quotes = "~0.2.3"
black = "~22.6"
requests = "~2.28"
isort = "^5.10.1"
[tool.poetry.group.vm.dependencies]
cairo-rs-py = "~0.2.0"
[tool.isort]
profile = "black"
skip_gitignore = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
starknet-devnet = "starknet_devnet.server:main"
[tool.pytest.ini_options]
markers = [
"account",
"account_custom",
"account_predeployed",
"call",
"declare",
"deploy",
"estimate_fee",
"fee_token",
"general_workflow",
"invoke",
"restart",
"state_update",
"timestamps",
"transaction_trace",
"tx_version",
"web3_messaging",
]
junit_family="xunit1"
asyncio_mode="strict"
filterwarnings=[
"ignore::DeprecationWarning:lark.*:",
"ignore::DeprecationWarning:frozendict.*:",
"ignore::DeprecationWarning:eth_abi.codec.*:",
"ignore::marshmallow.warnings.RemovedInMarshmallow4Warning",
]