-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
50 lines (45 loc) · 1.13 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
48
49
50
[project]
name = "FAIR_eva"
version = "1.5.0"
authors = [
{ name="Fernando Aguilar Gómez", email="[email protected]" },
{ name="Pablo Orviz Fernández", email="[email protected]" },
{ name="Iván Palomo Llavona", email="[email protected]" },
]
description = "FAIR EVA: Evaluator, Validator & Advisor"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
]
dependencies = [
"werkzeug == 3.0.3",
"connexion",
"swagger-ui-bundle == 0.0.6",
"flask == 2.2.5",
"flask_wtf",
"bs4",
"psycopg2-binary",
"pandas",
"idutils",
"Babel",
"flask_babel",
"bokeh == 2.3.3",
"reportlab",
"PyPDF2",
]
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[project.urls]
"Homepage" = "https://github.com/ifca-advanced-computing/FAIR_eva"
"Bug Tracker" = "https://github.com/ifca-advanced-computing/FAIR_eva/issues"
[tool.docformatter]
black = true
recursive = true
non-strict = false
in-place = true
[tool.isort]
profile = "black"