-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 975 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
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"protobuf~=6.30",
"grpcio-tools~=1.59"
]
build-backend = "setuptools.build_meta"
[project]
name = "snet-sdk"
version = "6.0.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"}
dependencies = [
"protobuf~=6.30",
"grpcio~=1.71",
"grpcio-tools~=1.71",
"grpcio-health-checking~=1.71",
"web3~=7.0",
"wheel~=0.45",
"rlp~=4.0",
"ipfshttpclient==0.4.13.2",
"snet-contracts==1.0.1",
"lighthouseweb3~=0.1.4",
"py-multihash~=3.0",
"pydantic~=2.11",
"pydantic-settings~=2.13"
]
[tool.poetry.group.dev.dependencies]
ruff = "^0.11"
pytest = "^8.3"
coverage = "^7.13"
[tool.ruff]
line-length = 100
[tool.setuptools.packages.find]
include = ["snet*"]