-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "iqlabs-solana-sdk"
version = "0.1.15"
description = "IQLabs Solana SDK for Python — on-chain data storage, database tables, and connections"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{name = "IQLabs", email = "dev@iqlabs.io"},
]
keywords = ["solana", "blockchain", "sdk", "iqlabs", "on-chain", "inscription"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"solana>=0.32.0",
"solders>=0.21.0",
"anchorpy>=0.19.0",
"pycryptodome>=3.20.0",
"cryptography>=41.0.0",
]
[project.urls]
Homepage = "https://github.com/IQCoreTeam/iqlabs-solana-sdk-python"
Repository = "https://github.com/IQCoreTeam/iqlabs-solana-sdk-python"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[tool.setuptools.packages.find]
include = ["iqlabs*"]
[tool.setuptools.package-data]
iqlabs = ["idl/*.json"]