-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = 'pyether'
version = '0.3.1'
description = 'The python package for interacting with Ethereum.'
authors = ['Alexey <axbelenkov@gmail.com>']
license = 'MIT'
readme = 'README.md'
keywords = ['web3', 'ethereum', 'ether.py', 'pyether', 'ether py', 'blockchain', 'web3.py', 'ethereum-python', 'eth', 'crypto', 'defi', 'dex']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Typing :: Typed'
]
packages = [{ include = 'ether' }]
[project.urls]
homepage = "https://ether.crocofactory.dev"
documentation = "https://ether.crocofactory.dev"
source = "https://github.com/CrocoFactory/ether"
download = "https://pypi.org/project/pyether/#files"
tracker = "https://github.com/CrocoFactory/ether/issues"
[tool.poetry.dependencies]
python = '^3.9'
web3 = "^6.12.0"
pydantic = "^2.9.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.39"
markdown-include-variants = "^0.0.2"
mkdocstrings-python = "^1.12.2"
mdx-include = "^1.4.2"
pillow = "10.2"
cairosvg = "2.6"
[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'