-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.07 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
[tool.poetry]
name = 'evm_extras'
version = '0.2.3.post2'
description = 'The package containing utilities to develop Web3-based projects'
authors = ['Alexey <[email protected]>']
license = 'MIT'
readme = 'README.md'
repository = 'https://github.com/CrocoFactory/evm-extras'
homepage = 'https://github.com/CrocoFactory/evm-extras'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS'
]
packages = [{ include = 'evm_extras' }]
[tool.poetry.dependencies]
python = '^3.11'
web3 = "^6.12.0"
python-extras = "^0.1.6"
evm-wallet = "^2.0.2"
[tool.poetry.group.dev.dependencies]
build = "^1.0.3"
twine = "^4.0.2"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
pytest-evm = "^0.2.0"
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'