File tree Expand file tree Collapse file tree 4 files changed +29
-18
lines changed
Expand file tree Collapse file tree 4 files changed +29
-18
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,20 @@ includes:
1313 taskfile : " docker/.tasks.yml"
1414 dir : " ."
1515
16+ plugin :
17+ taskfile : " libs/gl-plugin/.tasks.yml"
18+ dir : " ."
19+
20+ signerproxy :
21+ taskfile : " libs/gl-signerproxy/.tasks.yml"
22+ dir : " ."
23+
1624tasks :
1725
1826 ci-check :
1927 deps :
28+ - task : signerproxy:build
29+ - task : plugin:build
2030 - task : clientpy:check
2131 - task : clnvm:check
2232
Original file line number Diff line number Diff line change @@ -8,24 +8,9 @@ authors = [
88 {
name =
" Christian Decker" ,
email =
" [email protected] " },
99 {
name =
" Erik De Smedt" ,
email =
" [email protected] " },
1010]
11-
12- [tool .poetry .dependencies ]
13- python = " ^3.8"
14- requests = " ^2"
15- click = " ^8"
16-
17- [tool .poetry .group .dev .dependencies ]
18- types-requests = " ^2.31"
19- pytest = " ^8"
20- mypy = " ^1.8.0"
21- types-click = " ^7"
22- black = " ^24.2.0"
23-
24- [tool .poetry .group .lsp_ide .dependencies ]
25- python-lsp-server = " ^1.10.0"
26-
27- [tool .poetry .scripts ]
28- clnvm = " clnvm.cli:run"
11+ dependencies = [
12+ " requests>=2.32.3" ,
13+ ]
2914
3015[build-system ]
3116requires = [" hatchling" ]
@@ -34,10 +19,14 @@ build-backend = "hatchling.build"
3419[dependency-groups ]
3520dev = [
3621 " mypy>=1.14.1" ,
22+ " pytest>=7.4.4" ,
3723 " types-requests>=2.31.0.6" ,
3824]
3925
4026[tool .hatch .build ]
4127include = [
4228 " clnvm" ,
4329]
30+
31+ [project .scripts ]
32+ hello = " clnvm.cli:run"
Original file line number Diff line number Diff line change 1+ version : ' 3'
2+
3+ tasks :
4+ build :
5+ cmds :
6+ - cargo build
Original file line number Diff line number Diff line change 1+ version : ' 3'
2+
3+ tasks :
4+ build :
5+ cmds :
6+ - cargo build
You can’t perform that action at this time.
0 commit comments