-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.48 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
[project]
name = "applypilot"
version = "0.2.0"
description = "AI-powered end-to-end job application pipeline"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.11"
authors = [{name = "Pickle-Pixel"}]
keywords = ["job-search", "automation", "ai", "resume", "apply", "job-application"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
]
dependencies = [
"typer>=0.9.0",
"rich>=13.0",
"httpx>=0.24",
"beautifulsoup4>=4.12",
"playwright>=1.40",
"python-dotenv>=1.0",
"pyyaml>=6.0",
"pandas>=2.0",
"mcp>=1.9",
"python-jobspy>=1.1",
"markdownify>=0.14.1",
"websocket-client>=1.0",
"python-docx>=1.1",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "ruff>=0.1"]
[project.scripts]
applypilot = "applypilot.cli:app"
[project.urls]
Homepage = "https://github.com/ibarrajo/ApplyPilot"
Repository = "https://github.com/ibarrajo/ApplyPilot"
Issues = "https://github.com/ibarrajo/ApplyPilot/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/applypilot"]
[tool.hatch.build]
artifacts = ["src/applypilot/config/*.yaml"]
[tool.ruff]
target-version = "py311"
line-length = 120