24 lines
633 B
TOML
24 lines
633 B
TOML
[project]
|
|
name = "pyln-client"
|
|
version = "25.09rc2"
|
|
description = "Client library and plugin library for Core Lightning"
|
|
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
|
|
license = { text = "BSD-MIT" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.8,<4.0"
|
|
dependencies = ["pyln-proto>=23", "pyln-bolt7>=1.0"]
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=7.0.0", "pyln-bolt7", "pyln-proto"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["pyln"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling>=1.0.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv.sources]
|
|
pyln-proto = { workspace = true }
|
|
pyln-bolt7 = { workspace = true }
|