Skip to content

Commit 2c1734a

Browse files
committed
chore: change pacakge name & fix import
1 parent 211228e commit 2c1734a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python SDK for ImageKit
22

3-
[![imagekitio](<https://img.shields.io/pypi/v/imagekitio.svg>)](https://pypi.org/project/imagekitio)
43
[![Python CI](<https://github.com/imagekit-developer/imagekit-python/workflows/Python%20CI/badge.svg>)](https://github.com/imagekit-developer/imagekit-python/)
4+
[![imagekitio](<https://img.shields.io/pypi/v/imagekitio.svg>)](https://pypi.org/project/imagekitio)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66
[![Twitter Follow](https://img.shields.io/twitter/follow/imagekitio?label=Follow&style=social)](https://twitter.com/ImagekitIo)
77

imagekitio/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .client import ImageKit

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6+
with open('requirements/requirements.txt') as f:
7+
install_requires = f.read().splitlines()
8+
69
setuptools.setup(
710
name="imagekitio",
811
version="2.0.0",
912
description="Python wrapper for the ImageKit API",
1013
long_description=long_description,
1114
long_description_content_type="text/markdown",
12-
install_requires=['requests==2.20.1'],
15+
install_requires=install_requires,
1316
url="https://github.com/imagekit-developer/imagekit-python",
1417
packages=setuptools.find_packages(),
1518
classifiers=[

0 commit comments

Comments
 (0)