20 lines
544 B
TOML
20 lines
544 B
TOML
[project]
|
|
name = "pyln-client"
|
|
version = "v25.12"
|
|
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.9,<4.0"
|
|
dependencies = ["pyln-proto>=23", "pyln-bolt7>=1.0"]
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8.0.0", "pyln-bolt7", "pyln-proto"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["pyln"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling>=1.0.0"]
|
|
build-backend = "hatchling.build"
|