mirror of
https://github.com/lightningd/plugins.git
synced 2026-08-13 12:33:19 +02:00
I want to archive the plugin for several reasons, in no particular order: - tests are failing for all current CLN versions right now - there is an alternative with passing tests in here called `trustedcoin` that does something similar - it was a WIP according to the README but there is no progress but my own PR [#775](https://github.com/lightningd/plugins/pull/775) trying to fix things - i don't feel comfortable merging this without review and there hasn't been any review in 4 months
32 lines
703 B
TOML
32 lines
703 B
TOML
[project]
|
|
name = "lightningd-plugins"
|
|
version = "0.1.0"
|
|
description = "Plugins repo meta dependencies"
|
|
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.10"
|
|
|
|
[dependency-groups]
|
|
dev = ["ruff>=0.15"]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.ruff]
|
|
include = [
|
|
"pyproject.toml",
|
|
".ci/**/*.py",
|
|
"backup/**/*.py",
|
|
"cl-zmq/**/*.py",
|
|
"clearnet/**/*.py",
|
|
"currencyrate/**/*.py",
|
|
"donations/**/*.py",
|
|
"feeadjuster/**/*.py",
|
|
"historian/**/*.py",
|
|
"monitor/**/*.py",
|
|
"persistent-channels/**/*.py",
|
|
"prometheus/**/*.py",
|
|
"rebalance/**/*.py",
|
|
"summary/**/*.py",
|
|
"sitecustomize.py",
|
|
]
|