-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (32 loc) · 950 Bytes
/
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
[tool.poetry]
name = "yaml2jsonnet"
version = "1.0.1"
description = "Convert from YAML to Jsonnet format, retaining comments"
license = "AGPL-3.0-or-later"
authors = ["Nathaniel Waisbrot <[email protected]>"]
readme = "README.md"
repository = "https://github.com/waisbrot/yaml2jsonnet"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: POSIX",
"Topic :: Software Development :: Compilers",
"Topic :: Utilities",
]
[tool.poetry.scripts]
yaml2jsonnet = 'yaml2jsonnet.cli:main'
[tool.poetry.dependencies]
python = "^3.8"
"ruamel.yaml" = "^0.16.10"
[tool.poetry.dev-dependencies]
pytest = "^4"
black = "^24.3"
isort = "^5"
flake8 = "^3"
mypy = "^0.782"
pytest-cov = "^2.10.0"
gojsonnet = "^0.16.0"
hypothesis = "^5.23.3"
hypothesis-jsonschema = "^0.17.3"