Skip to content

Commit 15bc683

Browse files
Merge pull request #11 from ekonstantinidis/ascii-art
Ascii Art & Version Number
2 parents 7b5c0c7 + ebb3072 commit 15bc683

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

pypiup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.1'
1+
__version__ = '0.0.2'

pypiup/cli.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ def cli(requirement, demo):
1414
PyPIup\n
1515
Check whether your PyPI requirements are up to date.
1616
"""
17+
18+
print("\n ______ __ __ ______ __ __ __ ______ ")
19+
print(" /\ == \ /\ \_\ \ /\ == \ /\ \ /\ \/\ \ /\ == \ ")
20+
print(" \ \ _-/ \ \____ \ \ \ _-/ \ \ \ \ \ \_\ \ \ \ _-/ ")
21+
print(" \ \_\ \/\_____\ \ \_\ \ \_\ \ \_____\ \ \_\ ")
22+
print(" \/_/ \/_____/ \/_/ \/_/ \/_____/ \/_/ ")
23+
print("\n PyPIup")
24+
print(" https://github.com/ekonstantinidis/pypiup")
25+
1726
if demo:
1827
demo_path = os.path.join(BASE_DIR, 'requirements/requirements-demo.txt')
1928
return Requirements(demo_path)

0 commit comments

Comments
 (0)