-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 977 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 977 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crosslinking-api"
version = "3.0.1"
description = "FastAPI-based REST API for the PRIDE Crosslinking Section"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [
{name = "Rappsilber Laboratory"}
]
[project.urls]
"Homepage" = "https://github.com/Rappsilber-Laboratory/crosslinking-api"
"Source" = "https://github.com/Rappsilber-Laboratory/crosslinking-api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = [
"--cov=app",
"--cov=db_config_parser",
"--cov-report=html",
"--cov-report=term-missing",
"--cov-branch",
"--strict-markers",
"-v",
]
markers = [
"unit: pure unit tests, no external dependencies",
"integration: requires a live PostgreSQL test database",
]
asyncio_mode = "auto"
[tool.coverage.run]
omit = ["tests/*", "main.py"]