-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (53 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
NAME = "passari_web_ui"
DESCRIPTION = (
"Web interface for Passari workflow"
)
LONG_DESCRIPTION = DESCRIPTION
AUTHOR = "Janne Pulkkinen"
AUTHOR_EMAIL = "[email protected]"
setup(
name=NAME,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=find_packages("src"),
include_package_data=True,
package_dir={"passari_web_ui": "src/passari_web_ui"},
install_requires=[
"Flask",
"Flask-Security-Too",
"click>=7", "click<8",
"SQLAlchemy",
"psycopg2",
"rq>=1",
"rq-dashboard>=0.6",
"toml",
"bcrypt",
"Flask-SQLAlchemy",
"Flask-WTF",
"flask-talisman",
"arrow"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Framework :: Flask",
],
python_requires=">=3.6",
use_scm_version=True,
command_options={
"build_sphinx": {
"project": ("setup.py", NAME),
"source_dir": ("setup.py", "docs")
}
},
setup_requires=["setuptools_scm", "sphinx", "sphinxcontrib-apidoc"],
extras_require={
"sphinx": ["sphinxcontrib-apidoc"]
}
)