-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.14 KB
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
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "omnibioai-toolserver"
version = "0.1.2"
description = "Standalone HTTP ToolServer for OmniBioAI (REST-backed bioinformatics tools like Enrichr)"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Manish Kumar" }]
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.23",
"httpx>=0.27",
"pydantic>=2",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.6",
]
[tool.setuptools]
packages = ["toolserver"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"-q",
"--cov=toolserver",
"--cov-report=term-missing",
"--cov-fail-under=95",
]
[tool.coverage.run]
branch = true
source = ["toolserver"]
omit = [
"*/tests/*",
"*/__pycache__/*",
]
[tool.coverage.report]
fail_under = 95
show_missing = true
skip_covered = false
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"if TYPE_CHECKING:",
]
[tool.ruff]
line-length = 110
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]