-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.02 KB
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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"protobuf~=6.30",
"grpcio-tools~=1.59"
]
build-backend = "setuptools.build_meta"
[project]
name = "snet-cli"
version = "3.1.1"
description = "SingularityNET CLI"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "SingularityNET Foundation", email = "info@singularitynet.io"}
]
urls = {Homepage = "https://github.com/singnet/snet-cli"}
# Cleaned dependencies list
dependencies = [
"protobuf~=6.30",
"grpcio~=1.59",
"grpcio-tools~=1.59",
"wheel~=0.45",
"rlp~=4.0",
"web3~=7.0",
"mnemonic==0.21",
"pyyaml~=6.0.1",
"ipfshttpclient==0.4.13.2",
"py-multihash~=3.0",
"argcomplete~=3.1",
"grpcio-health-checking~=1.59",
"jsonschema~=4.1",
"eth-account~=0.9",
"trezor~=0.13.8",
"ledgerblue~=0.1.48",
"snet-contracts==1.0.1",
"lighthouseweb3~=0.1.4",
"cryptography~=46.0"
]
[project.scripts]
snet = "snet.cli:main"
[tool.setuptools.packages.find]
include = ["snet*"]