-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.12 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
[tool.poetry]
authors = ["Band Protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "Python library for BandChain"
documentation = "https://docs.bandchain.org/client-library/pyband/getting-started.html"
homepage = "https://bandprotocol.com/"
keywords = ["BAND", "BLOCKCHAIN", "ORACLE"]
license = "MIT"
name = "pyband"
readme = "README.md"
repository = "https://github.com/bandprotocol/pyband"
version = "0.4.0-rc1"
[tool.poetry.dependencies]
bech32 = "1.2.0"
betterproto = "2.0.0b7"
bip32 = "0.0.8"
ecdsa = "0.19.0"
grpclib = "0.4.3"
ledgerblue = "^0.1.54"
mnemonic = "0.19"
python = "^3.7"
python-dateutil = "2.8.2"
[tool.poetry.group.dev.dependencies]
pytest = "7.1.3"
pytest-asyncio = "0.19.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]