-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
39 lines (36 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mospy-wallet"
version = "0.6.0"
description = "This package is a fork of cosmospy and is a light framework for the cosmos ecosystem"
authors = [
{ name = "ctrl-felix", email = "[email protected]" },
]
readme = "README.md"
keywords = ["cosmospy", "mospy", "cosmos"]
license = {text = "BSD 3-Clause License"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"protobuf>=4.22.1",
"grpcio>=1.51.3",
"httpx>=0.23.0",
"cosmospy-protobuf>=0.0.2",
"ecdsa>=0.18.0",
"bech32>=1.2.0",
"mnemonic>=0.20",
"hdwallets>=0.1.2",
"safe-pysha3>=1.0.3;python_version>='3.9'",
"pysha3==1.0.2;python_version<'3.9'",
"pycryptodome>=3.20.0"
]
dynamic = []
[project.urls]
"Homepage" = "https://github.com/ctrl-Felix/mospy/"
"Bug Tracker" = "https://github.com/ctrl-Felix/mospy/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/mospy"]