-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
73 lines (68 loc) · 1.93 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 = "terra-classic-sdk"
authors = ["Geoff Munn <[email protected]>"]
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",
]
description = "The Python SDK for Terra Classic"
documentation = "https://terra-money.github.io/terra.py/index.html"
homepage = "https://github.com/geoffmunn/terra.py"
keywords = ["blockchain", "terra", "terra classic", "lunc", "crypto", "luna classic", "luna classic sdk", "lunc sdk", "osmosis", "crypto sdk", "blockchain sdk"]
license = "MIT"
packages = [{ include = "terra_classic_sdk" }]
readme = "README.md"
repository = "https://github.com/terra-money/terra.py"
version = "3.0.2"
[tool.poetry.dependencies]
aiohttp = "^3.9.1"
bech32 = "^1.2.0"
bip32utils = "^0.3.post4"
ecdsa = "^0.18.0"
mnemonic = "^0.20"
python = "^3.10"
protobuf = "^4.25.1"
betterproto = "2.0.0b4"
furl = "^2.1.3"
boltons = "^23.1.1"
terra-classic-proto = "^4.0.0"
nest-asyncio = "^1.5.8"
attrs = "^23.1.0"
wrapt = "^1.16.0"
[tool.poetry.dev-dependencies]
aioresponses = "^0.7.6"
asynctest = "^0.13.0"
pytest-cov = "^4.1.0"
pytest = "^7.4.3"
pip = "^23.3.1"
Sphinx = "^7.2.6"
sphinx-autobuild = "^2021.3.14"
black = "^23.11.0"
coverage = "^7.3.2"
isort = "^5.12.0"
mypy = "^1.7.1"
pytest-mock = "^3.12.0"
pytest-runner = "^6.0.0"
pytest-sugar = "^0.9.7"
sphinx-autodoc-typehints = "^1.25.2"
uvloop = "^0.19.0"
watchdog = "^3.0.0"
wheel = "^0.42.0"
flake8 = "^6.1.0"
sphinx-rtd-theme = "^2.0.0"
types-python-dateutil = "^2.8.19.14"
[tool.pytest.ini_options]
addopts = "-ra -q"
minversion = "6.0"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.8.1"]