From e03944ec7d36b69468e091ab2edd141e1751217a Mon Sep 17 00:00:00 2001 From: Sergio Abad Date: Wed, 25 Nov 2020 15:52:58 +0100 Subject: [PATCH] Added __init__ file to module folder --- README.md | 2 +- aliexpress/__init__.py | 4 ++++ setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 aliexpress/__init__.py diff --git a/README.md b/README.md index b0c9579..127446b 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Usage guide Changelog ------------- - Version 1.0.2 + Version 1.0.3 -First release. License diff --git a/aliexpress/__init__.py b/aliexpress/__init__.py new file mode 100644 index 0000000..ce5657c --- /dev/null +++ b/aliexpress/__init__.py @@ -0,0 +1,4 @@ +"""AliExpress API wrapper for Python""" + +__version__ = '1.0.3' +__author__ = 'Sergio Abad' diff --git a/setup.py b/setup.py index e0fc144..bd0b6b5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='python-aliexpress-api', - version='1.0.2', + version='1.0.3', author='Sergio Abad', author_email='sergio.abad@bytelix.com', description='AliExpress API wrapper for Python',