-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 869 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
33
34
35
[tool.poetry]
name = "ntc_rosetta"
version = "0.2.2"
description = "The missing bridge between industry standard CLIs and YANG"
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/networktocode/ntc-rosetta"
[tool.poetry.scripts]
ntc_rosetta = 'ntc_rosetta.cli:run'
[tool.poetry.dependencies]
python = "^3.8"
jmespath = "^0.9.3"
lxml = "^4.3"
click = "^7.0"
yangify = "^0.1.2"
[tool.poetry.dev-dependencies]
pytest = "^4.2"
black = { version = "19.3b0", allow-prereleases = true }
pylama = "^7.7"
flake8-import-order = "^0.18.0"
mypy = "^1.0.0"
pytest-pythonpath = "^0.7.3"
pytest-cov = "^2.6"
jupyter = "^1.0"
nbval = "^0.9.1"
# https://github.com/PyCQA/pyflakes/issues/721
pyflakes = "~2.4.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"