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 1
1
# Python SDK for ImageKit
2
2
3
- [ ![ imagekitio] ( < https://img.shields.io/pypi/v/imagekitio.svg > )] ( https://pypi.org/project/imagekitio )
4
3
[ ![ 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 )
5
5
[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT )
6
6
[ ![ Twitter Follow] ( https://img.shields.io/twitter/follow/imagekitio?label=Follow&style=social )] ( https://twitter.com/ImagekitIo )
7
7
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 3
3
with open ("README.md" , "r" ) as fh :
4
4
long_description = fh .read ()
5
5
6
+ with open ('requirements/requirements.txt' ) as f :
7
+ install_requires = f .read ().splitlines ()
8
+
6
9
setuptools .setup (
7
10
name = "imagekitio" ,
8
11
version = "2.0.0" ,
9
12
description = "Python wrapper for the ImageKit API" ,
10
13
long_description = long_description ,
11
14
long_description_content_type = "text/markdown" ,
12
- install_requires = [ 'requests==2.20.1' ] ,
15
+ install_requires = install_requires ,
13
16
url = "https://github.com/imagekit-developer/imagekit-python" ,
14
17
packages = setuptools .find_packages (),
15
18
classifiers = [
You can’t perform that action at this time.
0 commit comments