-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (44 loc) · 1.11 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
47
48
49
50
51
[tool.poetry]
name = "network_as_code"
version = "4.1.0"
description = ""
authors = ["Sami Lahtinen <sami.lahtinen@nokia.com>", "Pavel Garmuyev <pavel.garmuyev@nokia.com>"]
packages = [
{ include = "network_as_code" },
]
license = "Apache-2.0"
[tool.pyright]
include = ["network_as_code"]
exclude = ["**/__pycache__", "**/.pytest_cache", "**/.*"]
pythonVersion = "^3.9"
pythonPlatform = "Linux"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = {extras = ["email"], version = "^2.7.1"}
httpx = "^0.24.1"
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.2"
pyright = "^1.1.271"
pytest-asyncio = "^0.19.0"
pdoc = "^14.5.1"
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
black = "^24.3.0"
pyyaml = "^6.0"
python-dotenv = "^0.19.2"
pytest-env = "^0.8.2"
pytest-httpx = "^0.23.1"
pip-audit = "^2.6.1"
pipdeptree = "^2.13.2"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
norecursedirs = "binding_generation"
testpaths = [
"tests",
#"integration_tests"
]
xfail_strict = true
[tool.poetry_bumpversion.file."network_as_code/__init__.py"]