-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (44 loc) · 1.21 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
"""
Yak-Bak collects submissions for and allows voting on conference talk proposals.
"""
from setuptools import find_packages, setup
setup(
name="Yak-Bak",
description=__doc__.strip().splitlines()[0],
long_description=__doc__,
author="Big Apple Py, Inc.",
author_email="[email protected]",
url="https://gitlab.com/bigapplepy/yak-bak",
download_url="https://gitlab.com/bigapplepy/yak-bak/tags",
license="BSD-3-Clause",
packages=find_packages(),
install_requires=[
"alembic",
"attrs",
"bunch",
"diff-match-patch",
"flask",
"flask-admin",
"flask-login",
"flask-mail",
"flask-sqlalchemy",
"flask-wtf",
"itsdangerous",
"markdown",
"python-frontmatter",
"python-social-auth",
"sentry-sdk[flask]",
"social-auth-app-flask-sqlalchemy",
"sqlalchemy >= 1.3.0b1",
"sqlalchemy-postgresql-json",
"toml",
"wtforms-alchemy",
],
entry_points={
"flask.commands": [
"sync_db=yakbak.flaskcli:sync_db",
],
},
# setup_requires=["vcversioner"],
# vcversioner={"version_module_paths" : ["yakbak/_version.py"]},
)