26 lines
No EOL
544 B
TOML
26 lines
No EOL
544 B
TOML
[project]
|
|
name = "matching"
|
|
version = "0.1.0"
|
|
description = "Job posting similarity, dedupe clustering, and keyword coverage for agency duplicate detection."
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"rapidfuzz>=3.6",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/matching"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|
|
asyncio_mode = "auto" |