From 1f227eb302c7c504d4fd2c06d1fa1b935e04951b Mon Sep 17 00:00:00 2001 From: Amir Sharifi Date: Sun, 23 Jan 2022 11:38:57 +0330 Subject: [PATCH] virsion 1.1.1 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 023ad82..b678fe7 100644 --- a/setup.py +++ b/setup.py @@ -5,16 +5,16 @@ this_directory = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() - +version='1.1.1' setup( name="preimutils", packages=find_packages(), - version='1.1.1', + version=version, description="All you need to prepare and preprocess your annotated images", long_description=long_description, long_description_content_type='text/markdown', url="https://github.com/mrl-amrl/preimutils", - download_url='https://github.com/mrl-amrl/preimutils/archive/1.0.6.tar.gz', + download_url='https://github.com/mrl-amrl/preimutils/archive/{}.tar.gz'.format(version), author="Amir Sharifi", author_email="ami_rsh@outlook.com", license='MIT',