mirror of
https://github.com/lightningd/plugins.git
synced 2026-08-16 13:00:58 +02:00
35 lines
735 B
TOML
35 lines
735 B
TOML
[tool.poetry]
|
|
name = "lightningd-plugins"
|
|
version = "0.1.0"
|
|
description = "Plugin test runner"
|
|
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
virtualenv = "^21."
|
|
ruff = "^0.15"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[tool.ruff]
|
|
include = [
|
|
"pyproject.toml",
|
|
".ci/**/*.py",
|
|
"backup/**/*.py",
|
|
"clearnet/**/*.py",
|
|
"currencyrate/**/*.py",
|
|
"datastore/**/*.py",
|
|
"donations/**/*.py",
|
|
"feeadjuster/**/*.py",
|
|
"monitor/**/*.py",
|
|
"persistent-channels/**/*.py",
|
|
"rebalance/**/*.py",
|
|
"sauron/**/*.py",
|
|
"zmq/**/*.py",
|
|
"sitecustomize.py",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|