mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +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
11
setup.py
11
setup.py
|
@ -46,11 +46,12 @@ OPTIONAL_REQUIREMENTS = [
|
|||
# Non-Python/non-PyPI optional dependencies:
|
||||
# ascii diagram: graph-easy (available from SBo repository)
|
||||
|
||||
logo_fname = os.path.join(os.path.dirname(__file__), 'logo.txt')
|
||||
with open(logo_fname, 'rb') as f:
|
||||
logo = f.read().decode('utf-8')
|
||||
print(logo)
|
||||
time.sleep(1)
|
||||
if "--install" not in sys.argv:
|
||||
logo_fname = os.path.join(os.path.dirname(__file__), 'logo.txt')
|
||||
with open(logo_fname, 'rb') as f:
|
||||
logo = f.read().decode('utf-8')
|
||||
print(logo)
|
||||
time.sleep(1)
|
||||
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Add table
Reference in a new issue