-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 900 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
40
41
42
43
44
[project]
name = "marker-server"
version = "0.1.0"
description = "Marker Server"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"pydantic==2.11.4",
"pydantic-settings==2.9.1",
"gunicorn==23.0.0",
"fastapi==0.115.8",
"python-multipart==0.0.20",
"marker-pdf[full]==1.10.1",
"uvicorn==0.34.0",
]
[project.optional-dependencies]
dev = [
"ruff==0.6.5",
"pre-commit==4.1.0",
]
test = [
"pytest==8.3.4",
]
[tool.setuptools]
py-modules = []
[tool.ruff]
line-length = 150
[tool.ruff.lint]
ignore = ["F403", "F841"] # import * and never used variables
[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = ["config", "utils", "app"]
forced-separate = ["tests"]
[tool.ruff.lint.isort.sections]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.pytest.ini_options]
testpaths = ["tests"]