Skip to content

Commit 407692a

Browse files
committed
Add files for executable file
1 parent 5be9441 commit 407692a

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

cli.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
# Copyright (c) 2020 LG Electronics Inc.
4+
# SPDX-License-Identifier: Apache-2.0
5+
from fosslight_oss_pkg.fosslight_oss_pkg import convert_report
6+
7+
if __name__ == '__main__':
8+
convert_report("", "", "")

hooks/hook-fosslight_reuse.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from PyInstaller.utils.hooks import collect_all
2+
3+
datas, binaries, hiddenimports = collect_all('fosslight_reuse')
File renamed without changes.

src/fosslight_reuse/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import argparse
66
from ._help import _HELP_MESSAGE_REUSE
77
from ._fosslight_reuse import run_lint
8-
from fosslight_oss_pkg._fosslight_oss_pkg import convert_report
8+
from fosslight_oss_pkg.fosslight_oss_pkg import convert_report
99

1010

1111
def main():

0 commit comments

Comments
 (0)