forked from finnish-heritage-agency/passari-web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "passari-web-ui"
dynamic = ["version"]
description = "Web interface for Passari workflow"
readme = "README.md"
authors = [{name="Janne Pulkkinen", email="[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Framework :: Flask",
]
requires-python = ">=3.6"
dependencies = [
"passari-workflow",
"Flask",
"Flask-Security-Too",
"click>=7",
"SQLAlchemy",
"psycopg2",
"rq>=1",
"rq-dashboard>=0.6",
"toml",
"bcrypt",
"Flask-SQLAlchemy",
"Flask-WTF",
"flask-talisman",
"arrow",
]
[project.optional-dependencies]
dev = [
"fakeredis[lua]",
"pytest",
"sqlalchemy-utils",
]
docs = ["sphinxcontrib-apidoc"]
[tool.setuptools_scm]
fallback_version = "0.0.0"