[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "resume-agent" version = "0.1.0" description = "An evidence-backed, LLM-powered resume tailoring agent." readme = "README.md" requires-python = ">=3.11" dependencies = [ "beautifulsoup4>=4.12", "fastapi>=0.115", "httpx>=0.27", "openai>=1.68", "pydantic>=2.10", "pypdf>=5.1", "python-docx>=1.1", "python-dotenv>=1.0", "python-multipart>=0.0.20", "typer>=0.15", "uvicorn>=0.34", ] [project.optional-dependencies] dev = [ "pytest>=8.3", "ruff>=0.9", ] [project.scripts] resume-agent = "resume_agent.cli:app" [tool.hatch.build.targets.wheel] packages = ["src/resume_agent"] [tool.pytest.ini_options] pythonpath = ["src"] testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"]