summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: ed4e580c30cedcadcea9c7aedd2e46a3189b82c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.poetry]
name = "ymlstash"
version = "1.0.0"
description = "A simple ORM-like utility for operating on local YAML files via Python dataclasses"
authors = ["Yuval Adam <_@yuv.al>"]
readme = "README.md"
license = "MIT"

[tool.poetry.dependencies]
python = "^3.8"
pyyaml = "^6.0.1"

[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pytest.ini_options]
testpaths = ["tests"]