-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 972 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sentinel_sdk"
version = "0.0.5"
description = "A Sentinel SDK Written in Python"
authors = [
{ name = "NAST0R" },
{ name = "Tkd-Alex", email = "alex.tkd.alex@gmail.com" },
{ name = "MathNodes", email = "freQniK@mathnodes.com'" },
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["sentinel_sdk", "mospy", "sentinel", "cosmos", "protobuf", "sentinel_protobuf"]
license = {text = "GPL-3.0 license"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"sentinel-protobuf==0.3.3",
"grpcio>=1.51.1",
"bip-utils==2.9.0",
"mospy-wallet==0.6.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/sentinel_sdk"]