forked from michaelhly/solana-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
140 lines (127 loc) · 2.97 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[tool.poetry]
name = "solana"
version = "0.36.0"
description = "Solana Python API"
authors = [
"Michael Huang <michaelhly@gmail.com>",
"Kevin Heavey <heaveykevin2@gmail.com>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/michaelhly/solanapy"
documentation = "https://michaelhly.github.io/solana-py/"
keywords = ["solana", "blockchain", "web3"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
packages = [
{ include = "solana", from = "src" },
{ include = "spl", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
construct-typing = "^0.5.2"
httpx = ">=0.23.0"
typing-extensions = ">=4.2.0"
websockets = ">=9.0,<=12.0"
solders = "^0.23.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
mypy = "^1.0"
pyyaml = "6.0.1"
pytest-docker = "^2.0.1"
requests = "2.28.1"
bump2version = "^1.0.1"
pytest-asyncio = "^0.18.3"
pytest-cov = "^3.0.0"
pytest-html = "^4.1.1"
pytest-xdist = "^3.6.1"
asyncstdlib = "^3.10.2"
mkdocstrings = "^0.18.0"
mkdocs-material = "^8.2.1"
ruff = "^0.7.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--doctest-modules",
"-p no:anyio",
"--cov",
"--color=yes",
"--cov-report=xml",
"--cov-report=html",
"--container-scope=module", # restart container for each module
"--dist=loadscope", # distribute tests by module
"-vv",
"-s",
]
asyncio_mode = "auto"
markers = ["integration: mark a test as a integration test."]
testpaths = ["src", "tests"]
[tool.ruff]
line-length = 120
# Assume Python 3.9 (lower bound of supported python versions)
target-version = "py39"
[tool.ruff.lint]
# Enable Pyflakes `E` and `F` codes by default.
select = [
"A",
"B",
"D",
"E",
"F",
"I",
"ARG",
"BLE",
"C4",
"SIM",
"PLC",
"PLE",
"PLR",
"PLW",
"RUF",
]
ignore = ["D203", "I001"]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"src/**/*.py" = ["PLR0913", "RUF012"]
"src/solana/blockhash.py" = ["A003"]
"src/solana/rpc/api.py" = ["PLR0912"]
"tests/**/*.py" = ["D100", "D103", "ARG001", "PLR2004"]
[tool.pyright]
reportMissingModuleSource = false
[tool.mypy]
check_untyped_defs = true