Compare commits

..

3 Commits
0.5.0 ... 0.5.1

Author SHA1 Message Date
444efcbee5 0.5.1 2023-02-05 23:55:21 +08:00
08d812c614 fix UnicodeDecodeError on windows 2023-02-05 23:55:05 +08:00
cb691c782c update README 2023-02-05 23:51:11 +08:00
3 changed files with 7 additions and 12 deletions

View File

@ -1,19 +1,11 @@
nhentai
=======
.. code-block::
_ _ _ _
_ __ | | | | ___ _ __ | |_ __ _(_)
| '_ \| |_| |/ _ \ '_ \| __/ _` | |
| | | | _ | __/ | | | || (_| | |
|_| |_|_| |_|\___|_| |_|\__\__,_|_|
あなたも変態。 いいね?
|travis|
|pypi|
|version|
|license|
@ -246,5 +238,8 @@ Set `NHENTAI` env var to your nhentai mirror.
.. |pypi| image:: https://img.shields.io/pypi/dm/nhentai.svg
:target: https://pypi.org/project/nhentai/
.. |version| image:: https://img.shields.io/pypi/v/nhentai
:target: https://pypi.org/project/nhentai/
.. |license| image:: https://img.shields.io/github/license/ricterz/nhentai.svg
:target: https://github.com/RicterZ/nhentai/blob/master/LICENSE

View File

@ -1,3 +1,3 @@
__version__ = '0.5.0'
__version__ = '0.5.1'
__author__ = 'RicterZ'
__email__ = 'ricterzheng@gmail.com'

View File

@ -9,8 +9,8 @@ with open('requirements.txt') as f:
def long_description():
with codecs.open('README.rst', 'r') as readme:
return readme.read()
with codecs.open('README.rst', 'rb') as readme:
return readme.read().decode('utf-8')
setup(