File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ from .client import ImageKit
Original file line number Diff line number Diff line change 33with 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+
69setuptools .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 = [
You can’t perform that action at this time.
0 commit comments