summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 2b22f7a1fae38bc2dfb56368c1fad8a4e9881fe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "getmeajob"
version = "0.1.0"
description = "Tool for managing job searches."
authors = [
  { name = "msglm", email = "msglm@techchud.xyz" }
]
dependencies = [
  "tomli",
  "JobSpy @ git+https://github.com/speedyapply/JobSpy.git",
  "llama-cpp-python",
  "free-proxy",		
]

[project.scripts]
getmeajob = "getmeajob.getmeajob:main"
[tool.setuptools.packages.find]
# matches setuptools.find_packages() behavior
where = ["."]
exclude = []