From 52adcb0caadda891f71c45ac3b9c9fa014a32f31 Mon Sep 17 00:00:00 2001 From: j3rome Date: Fri, 30 Jul 2021 15:33:17 -0400 Subject: [PATCH] * Updated readme * Version change --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4037c85..cfe3860 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ py-requirements-guesser --write {requirements.txt path} ``` You will be prompted by a serie of choice to orient the guessing process. -![Python Requirements Guesser](https://github.com/J3rome/py-requirements-guesser/blob/main/img/py-requirements-guesser.gif) +![Python Requirements Guesser](https://github.com/J3rome/py-requirements-guesser/raw/main/img/py-requirements-guesser.gif) ## Installation This package doesn't have any dependencies. diff --git a/setup.py b/setup.py index ec753fd..2ffcb38 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="py-requirements-guesser", # This is the name of the package - version="0.0.1", # The initial release version + version="0.1.0", # The initial release version author="Jerome Abdelnour", # Full name of the author description="Guess requirements.txt versions based on Git history", long_description=long_description, # Long description read from the the readme file @@ -24,4 +24,4 @@ setuptools.setup( 'py-requirements-guesser=py_requirements_guesser.cli:run' ] } -) \ No newline at end of file +)