-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
41 lines (37 loc) · 1.16 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
[tool.poetry]
name = "solathon"
version = "1.0.7"
description = "A high-performance, easy-to-use, and feature-rich Solana SDK for Python."
license = "MIT"
authors = ["GitBolt"]
readme = "README.md"
repository = "https://github.com/GitBolt/solathon"
keywords = ["solana", "web3", "sdk", "blockchain", "crypto"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development",
"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",
]
[tool.poetry.dependencies]
python = "^3.9"
base58 = "^2.1.1"
construct = "^2.10.67"
typing-extensions = { version = "^4.1.1", python = "3.10" }
qrcode = "^7.4.2"
httpx = "^0.27.2"
pynacl = "^1.5.0"
pillow = "^11.0.0"
[tool.poetry.dev-dependencies]
jedi = "^0.18.1"
neovim = "^0.3.1"
pytest = "^7.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"