forked from OP-TED/entity-resolution-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.17 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
[project]
name = "entity-resolution-service"
version = "0.1.0"
description = ""
authors = [
{name = "Meaningfy",email = "hi@meaningfy.ws"}
]
readme = "README.md"
requires-python = "~=3.14.0"
dependencies = [
"pydantic (>=2.12.5,<3.0.0)",
"fastapi (>=0.128.5,<0.129.0)",
"pymongo (>=4.16.0,<5.0.0)",
"pydantic-settings (>=2.13.0,<3.0.0)",
"uvicorn (>=0.41.0,<0.42.0)",
"ers-core @ git+https://github.com/meaningfy-ws/entity-resolution-spec.git@develop"
]
[tool.poetry]
packages = [
{ include = "ers", from = "src" }
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"linkml (>=1.9.6,<2.0.0)",
"ruff (>=0.15.0,<0.16.0)",
"pre-commit (>=4.5.1,<5.0.0)"
]
test = [
"pytest (>=9.0.2,<10.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)",
"polyfactory (>=3.2.0,<4.0.0)",
"pytest-asyncio (>=1.3.0,<2.0.0)",
"httpx (>=0.28.1,<0.29.0)"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"
markers = [
"integration: requires a running FerretDB/MongoDB instance",
]