forked from vyperlang/titanoboa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (37 loc) · 1015 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "titanoboa"
version = "0.1.7"
description = "A Vyper interpreter"
#authors = []
license = { file = "LICENSE" }
readme = "README.md"
#homepage = "https://github.com/vyperlang/titanoboa"
#repository = "https://github.com/vyperlang/titanoboa"
#documentation =
keywords = ["ethereum", "evm", "smart contract", "development"]
classifiers = ["Topic :: Software Development"]
# Requirements
dependencies = [
"vyper >= 0.3.8",
"eth-stdlib",
"eth-abi",
"py-evm>=0.7.0a2",
"eth-typing",
"hypothesis",
"pytest",
"rich",
# required for forking:
"requests",
# required for networked accounts
"eth-account",
]
[project.optional-dependencies]
forking-recommended = ["plyvel", "ujson"]
[build-system]
requires = ["setuptools", "wheel"]
[tool.setuptools.packages.find]
include = ["boa*"]
[tool.pytest.ini_options]
markers = ["ignore_isolation: Do not preserve state during tests"]
#[dev-dependencies]
#black = { version = "^18.3-alpha.0", python = "^3.6" }