init: resume 작성 하네스 설계
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=68"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "resume-harness"
|
||||
version = "0.1.0"
|
||||
description = "Evidence-grounded harness for high-quality Korean resumes"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"pydantic>=2.10,<3",
|
||||
"PyYAML>=6.0,<7",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = ["pytest>=8,<10"]
|
||||
|
||||
[project.scripts]
|
||||
resume-harness = "resume_harness.cli:main"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
resume_harness = ["prompt_templates/*.md"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-q"
|
||||
pythonpath = ["src"]
|
||||
testpaths = ["tests"]
|
||||
Reference in New Issue
Block a user