Compare commits
2 Commits
wallabag_a
...
1.1.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e892d3ceeb | ||
|
|
e52b8befe4 |
10
setup.py
10
setup.py
@@ -2,18 +2,19 @@ from setuptools import setup, find_packages
|
|||||||
from wallabag_api import __version__ as version
|
from wallabag_api import __version__ as version
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'requests==2.18.4',
|
'requests',
|
||||||
]
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='wallabag_api',
|
name='wallabag_api',
|
||||||
version=version,
|
version=version,
|
||||||
description='Wallabag API to add every pages you want to your Wallabag account',
|
description='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',
|
||||||
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 :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
@@ -23,6 +24,7 @@ setup(
|
|||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Communications',
|
'Topic :: Communications',
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
VERSION = (1, 1, 2) # PEP 386
|
VERSION = (1, 1, 3) # PEP 386
|
||||||
__version__ = ".".join([str(x) for x in VERSION])
|
__version__ = ".".join([str(x) for x in VERSION])
|
||||||
|
|||||||
Reference in New Issue
Block a user