rename inkstitch/ to lib/

You can't have a module and a package named the same thing.  PyInstaller wants
to import the main script as if it were a module, and this doesn't work unless
there's no directory of the same name with a __init__.py in it.
pull/163/head
Lex Neva 2018-05-01 20:37:51 -04:00
rodzic 5b7f14d092
commit 1b31806423
37 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -1,8 +1,8 @@
import sys import sys
import traceback import traceback
from argparse import ArgumentParser from argparse import ArgumentParser
from inkstitch.utils import save_stderr, restore_stderr from lib.utils import save_stderr, restore_stderr
from inkstitch import extensions from lib import extensions
parser = ArgumentParser() parser = ArgumentParser()

Wyświetl plik

@ -7,8 +7,8 @@ import gettext
from copy import deepcopy from copy import deepcopy
import math import math
import libembroidery import libembroidery
from inkstitch.utils import cache from .utils import cache
from inkstitch.utils.geometry import Point from .utils.geometry import Point
import inkex import inkex
import simplepath import simplepath