forked from CZ-NIC/yangson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 778 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
[tool.poetry]
name = "yangson"
version = "1.5.10"
description = "Library for working with data modelled in YANG"
authors = ["Ladislav Lhotka <ladislav@lhotka.name>"]
license = "GNU Lesser General Public License v3 (LGPLv3)"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
elementpath = "^4.1.5"
PyYAML = "^6.0.1"
pyang = { version = "^2.6", optional = true }
setuptools = ">=69.1.1,<71.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^1.3.0"
[tool.poetry.scripts]
yangson = "yangson.__main__:main"
convert8525 = "yangson.convert8525:main"
[tool.poetry.extras]
yang-tools = ["pyang"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"