Skip to content

Commit 2e7b0b3

Browse files
author
Hao Zhou
committed
Bump version to 3.5.4, add requests-toolbelt to requires
1 parent d71241c commit 2e7b0b3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pixivpy3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Pixiv API library
33
"""
4-
__version__ = '3.5.3'
4+
__version__ = '3.5.4'
55

66
from .papi import PixivAPI
77
from .aapi import AppPixivAPI

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
requests>=2.0
22
requests_toolbelt>=0.9.1
3+

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
except ImportError:
55
from distutils.core import setup
66

7-
requires = ['requests']
7+
requires = ['requests', 'requests-toolbelt']
88

99
version = ''
1010
with open('pixivpy3/__init__.py', 'r') as fd:
@@ -18,7 +18,7 @@
1818
packages=['pixivpy3'],
1919
version=version,
2020
description='Pixiv API for Python (with 6.x AppAPI supported)',
21-
long_description="Pixiv API for Python (with 6.x AppAPI supported): https://github.com/upbit/pixivpy",
21+
long_description=open('README.md', 'r').read(),
2222
long_description_content_type="text/markdown",
2323
author='upbit',
2424
author_email='rmusique@gmail.com',

0 commit comments

Comments
 (0)