-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 776 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
[project]
name = "sol-parser-sdk-python"
version = "0.3.1"
description = "Solana DEX program log parsing (pure Python, API aligned with sol-parser-sdk)"
requires-python = ">=3.10"
dependencies = [
"base58>=2.0",
"grpcio>=1.64.0",
"grpcio-tools>=1.64.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
shredstream = [
"solders>=0.21.0",
]
dev = [
"pytest>=8.0",
"pytest-benchmark>=4.0",
]
[project.scripts]
verify-program-log-discriminators = "sol_parser.verify_discriminators:main"
sol-parser-check-migration = "sol_parser.check_migration:main"
sol-parser-verify-u128 = "sol_parser.u128_parity:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["sol_parser"]