upd few things

This commit is contained in:
FoxMaSk
2018-04-18 11:01:27 +02:00
parent 5b3cd028a7
commit 43b1602cbb
4 changed files with 10 additions and 7 deletions

View File

@@ -2,19 +2,21 @@ from setuptools import setup, find_packages
from wallabag_api import __version__ as version from wallabag_api import __version__ as version
desc = 'Wallabag API to add every pages you want to your Wallabag account' desc = 'Wallabag API to add every pages you want to your Wallabag account'
long_desc = 'Wallabag is a "read it later" service, and that Wallabag API allow you to save web pages ' \
'to your own account'
install_requires = [ install_requires = [
'aiohttp==2.2.5', 'aiohttp',
] ]
setup( setup(
name='wallabag_api', name='wallabag_api',
version=version, version=version,
description=desc, description=desc,
long_description=desc,
author='FoxMaSk', author='FoxMaSk',
author_email='foxmask@trigger-happy.eu', author_email='foxmask@trigger-happy.eu',
url='https://github.com/foxmask/wallabag_api', url='https://github.com/push-things/wallabag_api',
download_url="https://github.com/foxmask/wallabag_api/archive/" download_url="https://github.com/push-things/wallabag_api/archive/wallabag_api-" + version + ".zip",
"wallabag_api-" + version + ".zip",
packages=find_packages(), packages=find_packages(),
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',

View File

@@ -1,2 +1,2 @@
VERSION = (1, 2, 1) # PEP 386 VERSION = (1, 2, 2) # PEP 386
__version__ = ".".join([str(x) for x in VERSION]) __version__ = ".".join([str(x) for x in VERSION])

View File

@@ -33,8 +33,8 @@ class Wallabag(object):
client_id='', client_id='',
client_secret='', client_secret='',
extension='json', extension='json',
user_agent="WallabagPython/1.3 " user_agent="WallabagPython/1.2.2 "
"+https://github.com/foxmask/wallabag-api", " +https://github.com/push-things/wallabag-api",
aio_sess=None): aio_sess=None):
""" """
init variable init variable

View File

@@ -109,5 +109,6 @@ class TestWallabag(unittest.TestCase):
self.assertTrue(resp, True) self.assertTrue(resp, True)
""" """
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()