1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

Better description, added missing bs4 dependency

This commit is contained in:
2018-03-23 11:17:16 +01:00
parent 127d99b1e0
commit cd2911e7f0

View File

@@ -18,7 +18,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
setup( setup(
name='digimarks', # pip install digimarks name='digimarks', # pip install digimarks
description='Simple bookmarking service, using a SQLite database to store bookmarks, supporting tags and automatic title fetching.', description='Simple bookmarking service, using a SQLite database to store bookmarks, supporting tags, automatic title fetching and REST API calls.',
#long_description=open('README.md', 'rt').read(), #long_description=open('README.md', 'rt').read(),
long_description=long_description, long_description=long_description,
@@ -26,7 +26,7 @@ setup(
# third part for minor release # third part for minor release
# second when api changes # second when api changes
# first when it becomes stable someday # first when it becomes stable someday
version='1.1.0', version='1.1.99',
author='Michiel Scholten', author='Michiel Scholten',
author_email='michiel@diginaut.net', author_email='michiel@diginaut.net',
@@ -35,7 +35,7 @@ setup(
# as a practice no need to hard code version unless you know program wont # as a practice no need to hard code version unless you know program wont
# work unless the specific versions are used # work unless the specific versions are used
install_requires=['Flask', 'Peewee', 'Flask-Peewee', 'requests'], install_requires=['Flask', 'Peewee', 'Flask-Peewee', 'requests', 'bs4'],
py_modules=['digimarks'], py_modules=['digimarks'],