summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: f44230a9ba839a2d18c94a88b5f7f603df261e87 (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
25
[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",
  "python-jobspy",
#  "llama-cpp-python",
  "free-proxy",		
  "selenium",
]

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