-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 822 Bytes
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
[tool.poetry]
name = "autoapply-ai"
version = "0.1.0"
description = "An AI agent that rewrites your resume, finds matching jobs, and applies for them autonomously."
authors = ["Aditya Vaidya <adityavaidya83@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "autoapply"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
fastapi = "^0.115.12"
uvicorn = "^0.34.3"
python-dotenv = "^1.1.0"
langchain = "^0.3.25"
langchain-openai = "^0.3.21"
pypdf = "^5.6.0"
python-multipart = "^0.0.20"
langchain-community = "^0.3.25"
pytest = "^8.4.1"
reportlab = "^4.4.2"
weasyprint = "^65.1"
jinja2 = "^3.1.6"
pymupdf = "^1.26.3"
playwright = "^1.53.0"
python-docx = "^1.2.0"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"