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

Removed old dependency Flask-Peewee and fixed some style issues

This commit is contained in:
2019-04-10 19:35:54 +02:00
parent 42b1e266e1
commit cc40038f3f

View File

@@ -5,11 +5,12 @@ https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject https://github.com/pypa/sampleproject
""" """
from setuptools import setup
# To use a consistent encoding # To use a consistent encoding
from codecs import open as codecopen from codecs import open as codecopen
from os import path from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__)) here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file # Get the long description from the relevant file
@@ -18,7 +19,8 @@ with codecopen(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, automatic title fetching and REST API calls.', 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,
@@ -35,7 +37,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', 'bs4'], install_requires=['Flask', 'Peewee', 'requests', 'bs4'],
py_modules=['digimarks'], py_modules=['digimarks'],