forked from networktocode/yangify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 769 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 769 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
[tool.poetry]
name = "yangify"
version = "0.1.2"
description = "Library to help parsing/translating YANG models from/to native text/structures"
readme = "README.md"
authors = ["David Barroso <dbarrosop@dravetech.com>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = { version = "^0.6.0", python = "~3.6" }
yangson = "1.3.45"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
black = { version = "19.3b0", allow-prereleases = true }
pylama = "^7.6"
flake8-import-order = "^0.18.0"
mypy = "^0.701.0"
pytest-pythonpath = "^0.7.3"
pytest-cov = "^2.6"
jmespath = "^0.9.3"
lxml = "^4.3"
xmltodict = "^0.11.0"
jupyter = "^1.0"
nbval = "^0.9.1"
textfsm = "^1.1"
[build-system]
requires = ["poetry>=0.12.4"]
build-backend = "poetry.masonry.api"