-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 814 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 814 Bytes
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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"protobuf~=6.30",
"grpcio-tools~=1.59"
]
build-backend = "setuptools.build_meta"
[project]
name = "snet-sdk"
version = "5.1.0"
description = "SingularityNET Python SDK"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "SingularityNET Foundation", email = "info@singularitynet.io"}
]
urls = {Homepage = "https://github.com/singnet/snet-sdk-python"}
# Cleaned dependencies list
dependencies = [
"protobuf~=6.30",
"grpcio~=1.71",
"grpcio-tools~=1.71",
"grpcio-health-checking~=1.71",
"wheel~=0.45",
"rlp~=4.0",
"ipfshttpclient==0.4.13.2",
"snet-contracts==1.0.1",
"lighthouseweb3~=0.1.4",
"py-multihash~=3.0"
]
[tool.setuptools.packages.find]
include = ["snet*"]