-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
83 lines (76 loc) · 1.89 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
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "nibiru"
version = "0.21.13"
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" }, { include = "nibiru_proto" }]
[tool.poetry.dependencies]
python = "^3.8.16"
protobuf = "^4.24.3"
grpcio = "^1.58.0"
requests = "^2.31.0"
python-dotenv = "^1.0.0"
bech32 = "^1.2.0"
bip32 = "^3.4"
ecdsa = "^0.18.0"
mnemonic = "^0.20"
websocket-client = "^1.6.3"
packaging = "^23.1"
[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"
isort = "^5.12.0"
types-requests = "^2.31.0.1"
mypy = "^1.4.1"
flake8 = "^6.1.0"
flake8-pyproject = "^1.2.3"
shutup = "^0.2.0"
jupyter = "^1.0.0"
pre-commit = "^3.4.0"
[tool.black]
line-length = 88
skip-string-normalization = true
include = '.*\.pyi?$'
target-version = ['py38']
extend-exclude = '''
^/(
\.vscode
| \.github
| nibiru_proto/
| scripts
| docs/
| docs-md/
)$
'''
[tool.isort]
profile = "black"
py_version = 39
skip_glob = ["nibiru_proto/*"]
[tool.flake8]
ignore = [
"W503", "E501", "F811", "F541", "W605", "E203", "F405", "E722", "W191",
"F403", "F821", "E101", "N806", "N802", "N801", "N811", "N818"
]
max-line-length = 88
exclude = [".github", "nibiru_proto", "scripts", "docs", "docs-md", ".venv"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"