-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
68 lines (63 loc) · 1.52 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
[tool.poetry]
name = "nibiru"
version = "0.20.0b5"
description = "Python SDK for interacting with Nibiru."
authors = ["Nibiru Chain <[email protected]>"]
license = "MIT"
maintainers = [
"NibiruHeisenberg <[email protected]>",
"matthiasmat <[email protected]>",
"onikonychev <[email protected]>",
"Unique-Divine <[email protected]>",
]
readme = "README.md" # similar to long_description in setuptools
repository = "https://github.com/NibiruChain/py-sdk"
keywords = ["nibiru", "blockchain", "sdk", "python", "cosmos"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
packages = [{ include = "nibiru" }]
[tool.poetry.dependencies]
python = "^3.8"
asyncio = "^3.4.3"
bech32 = "^1.2.0"
python-dotenv = "^0.21.0"
requests = "^2.28.1"
aiohttp = "^3.8.3"
ecdsa = "^0.18.0"
mnemonic = "^0.20"
hdwallets = "^0.1.2"
aiocron = "^1.8"
pre-commit = "^2.20.0"
shutup = "^0.2.0"
websocket-client = "^1.4.1"
packaging = "^21.3"
nibiru-proto = "==0.20.0b5"
bip32 = "^3.3"
importlib-metadata = "^5.0.0"
[tool.poetry.group.dev.dependencies]
pytest-skip-slow = "^0.0.3"
pytest-order = "^1.0.1"
pdoc3 = "^0.10.0"
pytest = "^7.1.3"
black = "^22.10.0"
pytest-cov = "^4.0.0"
[tool.black]
line-length = 88
skip-string-normalization = true
include = '.*\.pyi?$'
target-version = ['py37']
extend-exclude = '''
^/(
\.vscode
| nibiru/proto
)$
'''
[tool.isort]
profile = "black"
py_version = 39
skip_glob = ["nibiru/proto/*"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"