-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (84 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
93 lines (84 loc) · 1.88 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[project]
name = "supra-sdk"
version = "0.1.1"
description = "A Python SDK for seamless interaction with the Supra-L1 network, supporting Move-VM operations and transactions."
requires-python = ">=3.12"
license = { file = "LICENSE" }
readme = "README.md"
keywords = [
"supra-python-sdk",
"supra",
"supra-network",
"supra-l1",
"supra-move",
]
authors = [{ name = "Supra", email = "opensource@supra.com" }]
dependencies = [
"httpx[http2]>=0.28.1,<0.29.0",
"PyNaCl>=1.5.0,<2.0.0",
"typing-extensions>=4.4.0,<5.0.0",
"behave>=1.2.6,<2.0.0",
"types-six>=1.16.21.20240513,<2.0.0",
]
[project.urls]
Homepage = "https://github.com/Entropy-Foundation/supra-python-sdk"
Documentation = "https://supra-python-sdk.docs.supra.com/"
Repository = "https://github.com/Entropy-Foundation/supra-python-sdk.git"
[tool.ruff]
line-length = 88
target-version = "py312"
fix = true
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# # pydocstyle
# "D",
# flake8-bugbear
"B",
# flake8-comprehensions
# "C",
# flake8-async
"ASYNC",
# flake8-pie
"PIE",
# flake8-simplify
"SIM",
# flake8-unused-argument
"ARG",
# pep8-naming
"N",
# isort
"I",
# pyupgrade
"UP",
# Ruff-specific rules
"RUF",
]
ignore = ["E203", "E501", "E701", "B017", "RUF012"]
exclude = ["__init__.py"]
[tool.ruff.lint.isort]
known-first-party = ["supra_sdk"]
combine-as-imports = true
[tool.ruff.format]
docstring-code-format = true
[tool.uv.build-backend]
module-name = "supra_sdk"
module-root = ""
[dependency-groups]
dev = [
"aiofiles>=24.1.0",
"black>=25.1.0",
"coverage>=7.10.6",
"pip>=25.2",
"ruff>=0.13.0",
"sphinx>=8.2.3",
"sphinx-autodoc-typehints>=3.2.0",
"sphinx-rtd-theme>=3.0.2",
]