-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 735 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 735 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
[project]
name = "robotframework-jinger"
version = "1.0.1"
description = "Generate data-driven Robot Framework testcases using Jinja templates"
authors = [
{name = "Marduk Bolaños, Mohamad Nour Almujarkesh", email = "marduk.bolanos@imbus.de"},
]
dependencies = [
"jinja2>=3.1.3",
"click>=8.1.7",
]
requires-python = ">= 3.8.2"
readme = "README.md"
license = {text = "Apache 2.0"}
urls = { homepage = "https://github.com/mardukbp/robotframework-jinger" }
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"
[project.scripts]
jinger = "JingeR.jinger:cli"
[tool.flit.module]
name = "JingeR"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"robotframework>=7.0",
]