forked from 0xkarmacoma/smol-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 712 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 712 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
[tool.poetry]
name = "smol-evm"
version = "0.1.0"
description = "👨🔬 An extensible Python implementation of the Ethereum yellow paper from scratch."
authors = ["karmacoma <karma@coma.lol>"]
readme = "README.md"
homepage = "https://github.com/karmacoma-eth/smol-evm"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
eth-utils = {version = "^2.0.0", extras = ["pycryptodome"]}
pycryptodome = "^3.15.0"
tomlkit = "^0.11.5"
click = "^8.1.3"
colorama = "^0.4.6"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119
[tool.poetry.scripts]
smol-evm = "cli:cli"