forked from netdevops/hier_config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (44 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "hier-config"
version = "2.2.2"
description = "A network configuration comparison tool, used to build remediation configurations."
packages = [
{ include="hier_config", from="."},
]
authors = [
"Andrew Edwards <[email protected]>",
"James Williams <[email protected]",
"Jan Brooks <[email protected]"
]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = ">= 5.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
mypy = "^1.7.0"
pylint = "^2.7.4"
pytest-cov = "^2.11.1"
pytest-black = "^0.3.12"
pytest-runner = "^5.3.0"
pytest-flake8 = "^1.0.7"
mkdocs = "^1.2.2"
mkdocs-include-markdown-plugin = "^3.2.3"
flake8 = "<5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"