From 2c1734a6e12c935bc80f72ec6b8cdd5a971e5a47 Mon Sep 17 00:00:00 2001 From: Akshay Katyal Date: Mon, 20 Jan 2020 23:30:41 +0530 Subject: [PATCH] chore: change pacakge name & fix import --- README.md | 2 +- imagekitio/__init__.py | 1 + setup.py | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcc4dec..f1be867 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Python SDK for ImageKit -[![imagekitio]()](https://pypi.org/project/imagekitio) [![Python CI]()](https://github.com/imagekit-developer/imagekit-python/) +[![imagekitio]()](https://pypi.org/project/imagekitio) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Twitter Follow](https://img.shields.io/twitter/follow/imagekitio?label=Follow&style=social)](https://twitter.com/ImagekitIo) diff --git a/imagekitio/__init__.py b/imagekitio/__init__.py index e69de29..ba7a502 100644 --- a/imagekitio/__init__.py +++ b/imagekitio/__init__.py @@ -0,0 +1 @@ +from .client import ImageKit diff --git a/setup.py b/setup.py index a020837..483d986 100644 --- a/setup.py +++ b/setup.py @@ -3,13 +3,16 @@ with open("README.md", "r") as fh: long_description = fh.read() +with open('requirements/requirements.txt') as f: + install_requires = f.read().splitlines() + setuptools.setup( name="imagekitio", version="2.0.0", description="Python wrapper for the ImageKit API", long_description=long_description, long_description_content_type="text/markdown", - install_requires=['requests==2.20.1'], + install_requires=install_requires, url="https://github.com/imagekit-developer/imagekit-python", packages=setuptools.find_packages(), classifiers=[