-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (49 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kaleido-cli"
version = "0.1.0"
description = "CLI for managing RGB Lightning Nodes and interacting with Kaleidoswap"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Kaleidoswap", email = "dev@kaleidoswap.com" }
]
keywords = ["bitcoin", "lightning", "rgb", "kaleidoswap", "cli"]
dependencies = [
"typer>=0.12.0",
"shellingham>=1.5",
"rich>=13.0.0",
"pyyaml>=6.0.0",
"kaleido-sdk==0.1.5",
]
[project.scripts]
kaleido = "kaleido_cli.app:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.15.1",
]
[project.urls]
Homepage = "https://kaleidoswap.com"
Repository = "https://github.com/kaleidoswap/kaleido-cli"
[tool.hatch.build.targets.wheel]
packages = ["kaleido_cli"]
[tool.pyright]
pythonVersion = "3.10"
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = ["install.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-mock>=3.15.1",
]