-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 791 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (33 loc) · 791 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
[project]
name = "crossref-reconciliation-service"
version = "0.1.0"
description = "Crossref.org reconciliation service for OpenRefine."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"backoff>=2.2.1",
"fastapi[standard]>=0.115.8",
"habanero>=2.2.0",
"httpx>=0.28.1",
"jellyfish>=1.1.3",
"python-dotenv>=1.0.1",
"python-multipart>=0.0.20",
"strsimpy>=0.2.1",
]
[tool.uv]
dev-dependencies = [
"ruff<1.0.0,>=0.2.2",
"pre-commit<4.1.0,>=3.6.2",
"uvicorn>=0.34.0",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"ARG001", # unused arguments in functions
]