-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 857 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
36
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "hiringfunnel"
version = "0.1.0"
description = "LinkedIn Easy Apply bot with TUI profile management"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"selenium>=4.15.0",
"beautifulsoup4>=4.12.0",
"fake-useragent>=1.4.0",
"openai>=1.6.0",
"python-dotenv>=1.0.0",
"pydantic>=2.5.0",
"lxml>=4.9.0",
"requests>=2.31.0",
"questionary>=2.0.0",
"rich>=13.0.0",
"anthropic>=0.40.0",
"google-generativeai>=0.8.0",
"ollama>=0.4.0",
"undetected-chromedriver>=3.5.0",
]
[project.scripts]
hiringfunnel = "hiringfunnel:main"
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[tool.setuptools.packages.find]
where = ["."]
include = ["hiringfunnel*", "easyapplybot*", "profiles*"]