-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.06 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
[tool.poetry]
name = 'evm_wallet'
version = '2.1.3'
description = 'The package, containing wrapper over EVM operations for interacting through Wallet entities'
authors = ['Alexey <[email protected]>']
license = 'MIT'
readme = 'README.md'
repository = 'https://github.com/CrocoFactory/evm-wallet'
homepage = 'https://github.com/CrocoFactory/evm-wallet'
classifiers = [
'Development Status :: 5 - Production/Stable',
'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_wallet' }]
[tool.poetry.dependencies]
python = '^3.11'
web3 = "^6.12.0"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.23.2"
build = "^1.0.3"
twine = "^4.0.2"
python-dotenv = "^1.0.1"
pytest = "^8.1.1"
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'