-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.38 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools >=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "web-installation-instruction"
description = "Tool rendering html page from install.cfg file."
readme = "README.md"
maintainers = [
{ name = "Adam McKellar", email = "[email protected]" },
{ name = "Kanushka Gupta" },
{ name = "Timo Ege", email = "[email protected]" },
]
authors = [
{ name = "Adam McKellar", email = "[email protected]" },
{ name = "Kanushka Gupta" },
{ name = "Timo Ege", email = "[email protected]" },
]
version = "0.5.2"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"jinja2",
"typer",
"installation-instruction >= 0.4.0"
]
[project.scripts]
ibi-build-html = "web_installation_instruction.__main__:run_cli"
[project.urls]
Repository = "https://github.com/instructions-d-installation/web-installation-instruction"
Issues = "https://github.com/instructions-d-installation/web-installation-instruction/issues"
Changelog = "https://github.com/instructions-d-installation/web-installation-instruction/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
web_installation_instruction = ["template/*.jinja"]