forked from FrankC01/pysui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (60 loc) · 1.91 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
# 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 :: Only"
]
dependencies = [
"dataclasses_json==0.5.7",
"pyyaml==6.0",
"httpx==0.24.1",
"h2==4.1.0",
"bip-utils==2.7.0",
"websockets==11.0.3",
"typing_utils==0.1.0",
"canoser==0.8.2",
"base58==2.1.1",
"Deprecated==1.2.14",
"pyroaring==0.4.2"
]
dynamic = ["version","readme"]
[project.scripts]
wallet = "samples.wallet:main"
async-gas = "samples.async_gas:main"
async-sub = "samples.async_sub:main"
async-sub-txn = "samples.async_sub_txn:main"
keys-to-0210 = "samples.keys_to_0210:main"
[tool.setuptools.packages.find]
# where = ["pysui","samples"]
# include = ["*","abstracts*","sui*"]
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"