forked from ton-blockchain/ton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 935 Bytes
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 935 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
48
49
50
51
[project]
name = "ton"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"pytest>=9.0.1",
"pytest-asyncio",
"tontester",
"types-gdb>=16.3.0.20250920",
]
[dependency-groups]
dev = [
"basedpyright>=1.32.1",
"ruff>=0.14.2",
]
[tool.uv.sources]
tontester = { workspace = true }
[tool.uv.workspace]
members = [
"test/tontester",
]
[tool.ruff]
line-length = 100
include = ["test/integration/**/*.py", "test/tontester/**/*.py"]
[tool.ruff.lint]
# Default rules with isort
select = [
# pycodestyle
"E4", "E7", "E9",
# Pyflakes
"F",
# isort
"I",
]
ignore = [
# This disallows to use `l` and `O` as variable names because "they can be confused with `1` and
# `0`". My response will be use a proper font that makes them distinguishable.
"E741",
]
[tool.pyright]
include = ["test/integration", "test/tontester"]
[tool.pytest]
testpaths = ["test/tontester/tests"]