-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lnbot"
version = "1.0.0"
description = "Official Python SDK for LnBot — Bitcoin for AI Agents. Send and receive sats over Lightning with a few lines of code."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "LnBot" }]
keywords = [
"lnbot",
"lightning",
"lightning-network",
"lightning-payments",
"lightning-address",
"lightning-wallet",
"bitcoin",
"bitcoin-payments",
"bolt11",
"lnurl",
"sats",
"payments",
"invoices",
"wallet",
"micropayments",
"ai-agent",
"ai-payments",
"mcp",
"model-context-protocol",
"sdk",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
"Topic :: Software Development :: Libraries",
]
dependencies = ["httpx>=0.27"]
[project.optional-dependencies]
test = ["pytest>=8"]
[project.urls]
Homepage = "https://ln.bot"
Documentation = "https://ln.bot/docs"
Repository = "https://github.com/lnbotdev/python-sdk"
Issues = "https://github.com/lnbotdev/python-sdk/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["integration: integration tests that hit the live API"]
[tool.hatch.build.targets.wheel]
packages = ["src/lnbot"]