-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (47 loc) · 1.12 KB
/
pyproject.toml
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
[project]
name = "resume-matcher"
version = "0.1.0"
description = "Match resumes against job descriptions using AI"
authors = ["Your Name <your.email@example.com>"]
requires-python = ">=3.9"
dependencies = [
"click>=8.1.7",
"pydantic-ai>=0.0.17",
"pydantic-settings>=2.7.0",
"request-id-helper>=0.2.0",
"pypdf2>=3.0.1",
"markitdown>=0.0.1a1",
"rich>=13.9.4",
"fastapi>=0.115.6",
"python-multipart>=0.0.20",
"uvicorn>=0.34.0",
"starlette-request-id>=1.2.1",
"starlette-exporter>=0.23.0",
"uvloop>=0.21.0",
]
[project.optional-dependencies]
test = [
"pyclean>=3.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"flake8>=7.1",
"mypy>=1.13",
"black>=24.10",
"isort>=5.13",
"pytest-asyncio>=0.21.1",
"httpx>=0.27.2",
"bandit>=1.8.0",
]
[tool.pytest.ini_options]
pythonpath = [
".",
"src"
]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.black]
line-length = 120
target-version = ['py311']
skip-string-normalization = true
include = '\.pyi?$'
exclude = 'build\/|buck-out\/|dist\/|_build\/|.git\/|.hg\/|.mypy_cache\/|.tox\/|.venv\/|migrations\/'