mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-11 20:48:11 +01:00
Fixed: pip install fails #106
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
22f7be897a
commit
464cf72d56
1 changed files with 6 additions and 5 deletions
5
setup.py
5
setup.py
|
@ -46,8 +46,9 @@ OPTIONAL_REQUIREMENTS = [
|
||||||
# Non-Python/non-PyPI optional dependencies:
|
# Non-Python/non-PyPI optional dependencies:
|
||||||
# ascii diagram: graph-easy (available from SBo repository)
|
# ascii diagram: graph-easy (available from SBo repository)
|
||||||
|
|
||||||
logo_fname = os.path.join(os.path.dirname(__file__), 'logo.txt')
|
if "--install" not in sys.argv:
|
||||||
with open(logo_fname, 'rb') as f:
|
logo_fname = os.path.join(os.path.dirname(__file__), 'logo.txt')
|
||||||
|
with open(logo_fname, 'rb') as f:
|
||||||
logo = f.read().decode('utf-8')
|
logo = f.read().decode('utf-8')
|
||||||
print(logo)
|
print(logo)
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue