-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
46 lines (41 loc) · 1.36 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
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "pycspr"
version = "1.2.1"
authors = ["Mark A. Greenslade <asladeofgreen@gmail.com>"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "Python library for interacting with a CSPR node."
documentation = "https://github.com/casper-network/casper-python-sdk/blob/main/README.md"
keywords = ["Casper Network", "Blockchain", "Python"]
license = "Apache-2.0"
maintainers = ["Mark A. Greenslade <asladeofgreen@gmail.com>"]
homepage = "https://github.com/casper-network/casper-python-sdk"
readme = "README.md"
repository = "https://github.com/casper-network/casper-python-sdk"
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.31.0"
jsonrpcclient = "^4.0.3"
cryptography = "^42.0.2"
ecdsa = "^0.18.0"
blake3 = "^0.4.1"
sseclient-py = "^1.8.0"
pytest-asyncio = "^0.23.7"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
pytest = "^8.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"