forked from Khabib73/YATL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (35 loc) · 1 KB
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
[tool.poetry]
name = "yatl-testing"
version = "0.1.3"
description = "Yet Another Testing Language"
keywords = ["testing", "api", "yaml", "http", "rest", "declarative"]
authors = ["Khabib Shakhbanov"]
readme = "README.md"
packages = [{ include = "yatl", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.14"
requests = ">=2.32.5"
jinja2 = ">=3.1.6"
pyyaml = ">=6.0.3"
lxml = ">=6.0.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.4"
pytest = "^9.0.2"
mypy = "^1.19.1"
[tool.poetry.group.examples]
optional = true
[tool.poetry.group.examples.dependencies]
fastapi = "^0.136.0"
uvicorn = "^0.44.0"
[tool.poetry.scripts]
yatl = "yatl.__main__:main"
[tool.poetry.urls]
Homepage = "https://github.com/Khabib73/YATL"
Documentation = "https://github.com/Khabib73/YATL#readme"
Repository = "https://github.com/Khabib73/YATL"
Issues = "https://github.com/Khabib73/YATL/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"