-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
73 lines (68 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "paloma-sdk"
authors = ["Paloma"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"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 = "The Python SDK for Paloma"
documentation = "http://docs.palomachain.coml"
homepage = "https://github.com/palomachain/paloma.py"
keywords = ["jigu", "blockchain", "paloma", "defi", "crypto"]
license = "MIT"
packages = [{ include = "paloma_sdk" }]
readme = "README.md"
repository = "https://github.com/palomachain/paloma.py"
version = "3.0.22"
[tool.poetry.dependencies]
aiohttp = "^3.8.1"
bech32 = "^1.2.0"
bip32utils = "^0.3.post4"
ecdsa = "^0.17.0"
mnemonic = "^0.19"
python = "^3.7"
protobuf = "^3.19.1"
betterproto = "2.0.0b4"
furl = "^2.1.3"
boltons = "^21.0.0"
nest-asyncio = "^1.5.4"
attrs = "^21.4.0"
wrapt = "^1.13.3"
terra-proto = "2.1.0"
[tool.poetry.dev-dependencies]
aioresponses = "^0.7.2"
asynctest = "^0.13.0"
pytest-cov = "^3.0.0"
pytest = "^7.0.1"
Sphinx = "^4.4.0"
sphinx-autobuild = "^2021.3.14"
black = "^22.1.0"
coverage = "^6.3.2"
isort = "^5.10.1"
mypy = "^0.931"
pytest-mock = "^3.7.0"
pytest-runner = "^5.3.1"
pytest-sugar = "^0.9.4"
sphinx-autodoc-typehints = "^1.17.0"
uvloop = "^0.16.0"
watchdog = "^2.1.6"
flake8 = "^3.9.2"
sphinx-rtd-theme = "^1.0.0"
types-python-dateutil = "^2.8.9"
[tool.pytest.ini_options]
addopts = "-ra -q"
minversion = "6.0"
asyncio_mode = "auto"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]