-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
74 lines (63 loc) · 1.98 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# pyproject.toml
[tool.pytest.ini_options]
testpaths = ["tests", "tests/sync_tests", "tests/integration_sync"]
pythonpath = ["pysui", "abstracts", "sui", "sui/sui_types"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pysui"
description = "SUI client Python SDK"
requires-python = ">=3.10"
keywords = ["software development kit", "sui", "blockchain"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"dataclasses_json < 0.7.0, >= 0.6.6",
"PyYAML < 6.2, >= 6.0.1",
"httpx < 0.28, >=0.27.0",
"h2 < 5.0, >= 4.1",
"websockets < 13.0.0, >=10.0.0",
"typing_utils < 0.2.0, >=0.1.0",
"canoser==0.8.2",
"base58 < 2.2.0, >=2.1.1",
"Deprecated < 1.3.0, >=1.2.14",
"pysui-fastcrypto >= 0.5.0",
"gql[httpx,websockets] >= 3.5.0",
]
dynamic = ["version", "readme"]
[project.scripts]
wallet = "samples.walletg:main"
async-gas = "samples.async_gasg:main"
sgqls = "samples.sgqls:main"
[tool.setuptools.packages.find]
exclude = [
"out*",
"temp*",
"test*",
"tools*",
"build*",
"doc*",
"pysuienv*",
"images*",
]
[tool.setuptools.dynamic]
version = { attr = "pysui.version.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[project.urls]
changelog = "https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md"
repository = "https://github.com/FrankC01/pysui"
issues = "https://github.com/FrankC01/pysui/issues"
documentation = "https://pysui.readthedocs.io"