-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 805 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
[project]
name = "jpd"
description = "I'm just trying to get better at the PagerDuty API by building this little search tool... "
license = {text="GPL-2.0-only"}
dynamic = ["version"]
authors = [{name="Paul Miller", email="paul@merb.net" }]
maintainers = [{name="Paul Miller", email="paul@merb.net" }]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
dependencies = [
"pagerduty",
"tabulate",
"dateparser",
"simplejson",
"xdg",
"bs4",
]
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "jpd/version.py"
[project.scripts]
jpd = "jpd.cmd:entry_point"
[project.urls]
Github = "https://github.com/jettero/jpd.git"
[tool.setuptools]
packages = ["jpd"]