-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
QStode
------
QStode is a web application serving as a tag based archive of internet links.
It's free software based on the excellent Flask microframework and SQLAlchemy.
`QStode <http://qsto.de>`_
"""
from setuptools import setup, find_packages
setup(
name="qstode",
version="0.2.1",
description="A web application serving as a tag based archive of links",
author="Daniel Kertesz",
author_email="[email protected]",
url="https://github.com/piger/qstode",
license="BSD",
long_description=__doc__,
install_requires=[
"Babel==2.9.1",
"Flask==1.0.2",
"Flask-Babel==0.12.2",
"Flask-Login==0.4.1",
"Flask-WTF==0.14.2",
"SQLAlchemy==1.3.3",
"WTForms==2.2.1",
"alembic==1.0.7",
"iso8601==0.1.12",
],
extras_require={
"mysql": ["mysql-connector-python"],
"search": ["whoosh", "redis"],
"wsgi": ["bjoern"],
},
tests_require=["pytest", "factory_boy", "Flask-Testing"],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
entry_points="""
[console_scripts]
qstode-scuttle-export = qstode.cli.scuttle_exporter:main
""",
)