Skip to content

Commit

Permalink
chore: change pacakge name & fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDHat committed Jan 20, 2020
1 parent 211228e commit 2c1734a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python SDK for ImageKit

[![imagekitio](<https://img.shields.io/pypi/v/imagekitio.svg>)](https://pypi.org/project/imagekitio)
[![Python CI](<https://github.com/imagekit-developer/imagekit-python/workflows/Python%20CI/badge.svg>)](https://github.com/imagekit-developer/imagekit-python/)
[![imagekitio](<https://img.shields.io/pypi/v/imagekitio.svg>)](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)

Expand Down
1 change: 1 addition & 0 deletions imagekitio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .client import ImageKit
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit 2c1734a

Please sign in to comment.