summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 28406347e43c50797864cdaba024c525897fb012 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[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 = [
  "jinja",
  "jobspy"
]

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