-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 3.5.4, add requests-toolbelt to requires
- Loading branch information
Hao Zhou
committed
Nov 10, 2019
1 parent
d71241c
commit 2e7b0b3
Showing
3 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
requests>=2.0 | ||
requests_toolbelt>=0.9.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
except ImportError: | ||
from distutils.core import setup | ||
|
||
requires = ['requests'] | ||
requires = ['requests', 'requests-toolbelt'] | ||
|
||
version = '' | ||
with open('pixivpy3/__init__.py', 'r') as fd: | ||
|
@@ -18,7 +18,7 @@ | |
packages=['pixivpy3'], | ||
version=version, | ||
description='Pixiv API for Python (with 6.x AppAPI supported)', | ||
long_description="Pixiv API for Python (with 6.x AppAPI supported): https://github.com/upbit/pixivpy", | ||
long_description=open('README.md', 'r').read(), | ||
long_description_content_type="text/markdown", | ||
author='upbit', | ||
author_email='[email protected]', | ||
|