forked from bbjubjub2494/helloweb3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 713 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 713 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
[project]
name = "helloweb3"
version = "0.1.0"
authors = [
{ name="Julie B.", email="no-reply@bbjubjub.fr" },
]
description = "capture-the-flag framework for web 3"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"eth-abi==5.0.0",
"eth-account==0.10.0",
"web3==6.18.0",
]
[project.urls]
Homepage = "https://github.com/bbjubjub2494/helloweb3"
Issues = "https://github.com/bbjubjub2494/helloweb3/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pylint."messages control"]
disable = ["R", "C"]