-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.14 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
[project]
name = "BASIL"
version = "1.6.0"
description = "open source software quality management tool"
authors = [
{name = "Luigi Pellecchia", email = "[email protected]"},
]
maintainers = [
{name = "Luigi Pellecchia", email = "[email protected]"}
]
dependencies = [
"Flask==2.2.2",
"Flask-Cors==3.0.10",
"Flask-RESTful==0.3.9",
"PyYAML==6.0.1",
"SQLAlchemy==2.0.19",
"Werkzeug==2.2.2",
"gunicorn==21.2.0",
"pyaml-env==1.2.1",
"python-gitlab==3.15.0",
"requests==2.28.2",
"spdx-tools==0.8.3",
"tmt==1.36.0",
"tmt[provision-container]"
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "GPL-2.0-or-later"}
[project.urls]
Documentation = "https://basil-the-fusa-spice.readthedocs.io"
Repository = "https://github.com/elisa-tech/BASIL.git"
Issues = "https://github.com/elisa-tech/BASIL/issues"
Changelog = "https://github.com/elisa-tech/BASIL/blob/main/changelog.md"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[tool.pdm.dev-dependencies]
lint = ["flake8"]
test = ["pytest"]