-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.03 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arbitrum-py"
version = "0.2.1"
description = "Python library for client-side interactions with Arbitrum"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Mert Köklü", email = "mert@yk-labs.com"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
dependencies = [
"web3>=6.3.0,<=6.15",
"rlp==3.0.0",
"eth-utils==2.3.1",
"python-dotenv==1.0.0",
"eth-typing>=3.5.2,<4",
"eth-abi>=5.1.0,<6",
"pyyaml==6.0.1",
"addict==2.4.0",
"py-evm<0.11,>=0.10.0b6"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.4,<8",
"mock==5.1.0",
"mypy==1.8.0",
"types-setuptools"
]
[project.urls]
homepage = "https://github.com/justmert/arbitrum-python-sdk"
documentation = "https://arbitrum-python-sdk.readthedocs.io"
repository = "https://github.com/justmert/arbitrum-python-sdk"