Skip to content

Commit

Permalink
Version 4.0.1
Browse files Browse the repository at this point in the history
Solve some problemas with Pypi and wheel format.
  • Loading branch information
LuqueDaniel committed Dec 9, 2016
1 parent 93dab8c commit 0f42bf3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
17 changes: 9 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
Pybooru - Package for Danbooru/Moebooru API.
============================================
.. image:: https://img.shields.io/pypi/v/Pybooru.svg?style=flat-square :target:
.. image:: https://img.shields.io/pypi/status/Pybooru.svg?style=flat-square :target:
.. image:: https://img.shields.io/pypi/l/Pybooru.svg?style=flat-square :target: https://raw.githubusercontent.com/LuqueDaniel/pybooru/master/LICENSE
.. image:: https://img.shields.io/pypi/wheel/Pybooru.svg?style=flat-square :target:
.. image:: https://img.shields.io/pypi/format/Pybooru.svg?style=flat-square :target:
.. image:: https://img.shields.io/pypi/v/Pybooru.svg?style=flat-square
.. image:: https://img.shields.io/pypi/status/Pybooru.svg?style=flat-square
.. image:: https://img.shields.io/pypi/l/Pybooru.svg?style=flat-square
:target: https://raw.githubusercontent.com/LuqueDaniel/pybooru/master/LICENSE
.. image:: https://img.shields.io/pypi/wheel/Pybooru.svg?style=flat-square
.. image:: https://img.shields.io/pypi/format/Pybooru.svg?style=flat-square


Licensed under: **MIT License**.

Examples of use
---------------
.. code-block:: python
from pybooru import Danbooru
from pybooru import Danbooru
client = Danbooru('danbooru')
artists = client.artist_list('ma')
for artist in artists:
print("Name: {0}".format(artist['name']))
..
See more examples of `Danbooru <https://github.com/LuqueDaniel/pybooru/tree/develop/examples/danbooru>`_ and `Moebooru <https://github.com/LuqueDaniel/pybooru/tree/develop/examples/moebooru>`_.

Documentation
-------------
You can consult the documentation on `Read the Docs <http://pybooru.readthedocs.io/en/stable/>`_
You can consult the `documentation <http://pybooru.readthedocs.io/en/stable/>`_

Changelog
---------
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Pybooru - Changelog

## Pybooru 4.0.1 - (12/09/2016)
- Fix problems with Pypi

## Pybooru 4.0.0 - (12/09/2016)
- Added support to Danbooru.
- Now Danbooru and Moebooru are two separed classes.
Expand Down
2 changes: 1 addition & 1 deletion pybooru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
resources -- Contains all resources for Pybooru.
"""

__version__ = "4.0.0"
__version__ = "4.0.1"
__license__ = "MIT"
__source_url__ = "http://github.com/LuqueDaniel/pybooru"
__author__ = "Daniel Luque <danielluque14[at]gmail[dot]com>"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
platforms=['any'],
install_requires=['requests'],
include_package_data=True,
data_file=[('', ['LICENSE', 'README.md', 'changelog.md', 'requirements.txt'])],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
Expand Down

0 comments on commit 0f42bf3

Please sign in to comment.