Completed
Push — develop ( 1b1263...764c43 )
by Jace
27s queued 11s
created

gitman.hook-gitman   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
# pyinstaller hook
2
3
from PyInstaller.utils.hooks import copy_metadata
0 ignored issues
show
introduced by
Unable to import 'PyInstaller.utils.hooks'
Loading history...
4
5
6
# Normally PyInstaller does not include metadata files.
7
# necessary to find the 'gitman' distribution
8
# via the get_distribution function
9
datas = copy_metadata('gitman')
10