-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from LuqueDaniel/2.1
2.1
- Loading branch information
Showing
9 changed files
with
118 additions
and
39 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Pybooru is a library for Python for access to API Danbooru / Moebooru based sites. | ||
|
||
Version: 2.1 (stable). | ||
|
||
Changelog: https://github.com/LuqueDaniel/pybooru/blob/master/changelog.md | ||
|
||
More information: https://github.com/LuqueDaniel/pybooru/blob/master/README.markdown | ||
|
||
Github repository: https://github.com/LuqueDaniel/pybooru |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Pybooru - Changelog | ||
=================== | ||
|
||
. **Pybooru 2.1** - (10/14/2013) | ||
- Added login suppport for any Moebooru based site. | ||
- Fixed a bug: 22792a0 | ||
- Added new information in setup.py. | ||
- Small changes. |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
find -iname '*.pyc' -delete | ||
|
||
fi |
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
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
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,19 +1,36 @@ | ||
#!/usr/bin/env python | ||
|
||
#setuptools imports | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
__author__ = 'Daniel Luque <danielluque14 at gmail dot com>' | ||
__version__ = '2.0' | ||
#pybooru imports | ||
import pybooru | ||
|
||
|
||
with open('README.rst', 'r') as f: | ||
LONG_DESCRIPTION = f.read() | ||
|
||
|
||
setup( | ||
name='Pybooru', | ||
version=__version__, | ||
author=__author__, | ||
version=pybooru.__version__, | ||
author=pybooru.__author__, | ||
description="Pybooru is a library for Python for access to API Danbooru / Moebooru based sites.", | ||
long_description=LONG_DESCRIPTION, | ||
author_email="danielluque14 at gmail dot com", | ||
url="https://github.com/LuqueDaniel/pybooru", | ||
license="MIT License", | ||
keywords='Pybooru moebooru danbooru API', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: Internet' | ||
], | ||
platforms=['any'], | ||
install_requires=['simplejson'], | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=['simplejson'], | ||
) |