-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "hr-breaker"
version = "0.1.4"
description = "Resume optimization tool for job postings"
readme = "README.md"
requires-python = ">=3.10,<3.14"
authors = [{name = "Boris Tseitlin"}, {name = "Claude Code"}]
license = {text = "MIT"}
keywords = ["resume", "job", "optimization", "ats", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastapi>=0.104",
"uvicorn[standard]>=0.24",
"python-multipart>=0.0.6",
"pydantic>=2.0",
"pydantic-ai",
"pydantic-ai-litellm",
"tenacity>=8.0",
"httpx",
"beautifulsoup4",
"scikit-learn>=1.0",
"python-dotenv",
"click>=8.0",
"pymupdf>=1.24",
"weasyprint>=60.0",
"jinja2>=3.1",
"playwright>=1.40",
"watchdog>=6.0.0",
"pydantic-settings>=2.12.0",
"litellm<1.82.7"
]
[project.scripts]
hr-breaker = "hr_breaker.cli:cli"
[project.urls]
Homepage = "https://github.com/btseytlin/hr-breaker"
Repository = "https://github.com/btseytlin/hr-breaker"
Issues = "https://github.com/btseytlin/hr-breaker/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hr_breaker"]
[tool.pytest.ini_options]
pythonpath = ["src"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
asyncio_default_test_loop_scope = "session"
[dependency-groups]
dev = [
"pytest-asyncio>=1.3.0",
]