-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (73 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (73 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "risk-of-bias"
description = "Software and AI for Risk of Bias assessment."
authors = [ {name = "Robert Luke", email = "code@robertluke.net"} ]
requires-python = ">=3.12.0"
version = "0.17.0"
readme = "docs/index.md"
# Dependencies derived from Dockerfile
dependencies = [
"pydantic>=2.11.4",
"pydantic-settings>=2.9.1",
"openai>=1.84.0",
"typer>=0.12.3",
"htpy>=25.6.2",
"pandas>=2.2.2",
"matplotlib>=3.9.0",
]
[project.urls]
Homepage = "https://github.com/rob-luke/risk-of-bias"
Issues = "https://github.com/rob-luke/risk-of-bias/issues"
[project.scripts]
risk-of-bias = "risk_of_bias.cli:app"
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"mypy>=1.16.0",
"isort>=6.0.1",
"flake8>=7.2.0",
"pyright>=1.1.401",
"codespell>=2.4.1",
"pytest>=8.0.0",
"mkdocs-material>=9.6.14",
"mkdocstrings[python]>=0.29.1",
"python-semantic-release==7.33.3",
"pyinstaller>=6.14.1",
"pandas-stubs",
]
web = [
"fastapi>=0.111.0",
"uvicorn>=0.29.0",
"python-multipart>=0.0.9",
]
all = [
"risk-of-bias[dev,web]",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["risk_of_bias"]
[tool.black]
line-length = 88
[tool.flake8]
max-line-length = 88
[tool.mypy]
exclude = ["build"]
[tool.isort]
profile = "black"
src_paths = "."
line_length = 88
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.codespell]
ignore-words-list = "Shepperd"
skip = "*.git,*.svg,*.pdf,*.pyc,__pycache__,build,dist,site,.mypy_cache,.pytest_cache,PKG-INFO,*.spec"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]