File: devtool.sh

package info (click to toggle)
pygubu 0.37-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,768 kB
  • sloc: python: 22,345; sh: 55; makefile: 7
file content (21 lines) | stat: -rwxr-xr-x 352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

designer_dir="../pygubu-designer"

project_dir_path="pygubu"
[[ $dde == t ]] && . ${designer_dir}/devtool.sh

install_designer(){
    pip3 install -e $designer_dir
}

test_installation(){
    pip3 install -e .
    pip3 install -e $designer_dir
    pygubu-designer
}

insd(){     install_designer;   }
ti(){       test_installation;  }

$*