-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.09 KB
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
[project]
name = "netty"
version = "0.1.0"
description = "Netty network automation tool"
authors = [
{ name = "wangxin.jeffry", email = "wangxin.jeffry@gmail.com" }
]
dependencies = [
"pydantic>=2.10.5",
"pydantic-extra-types>=2.10.2",
"pydantic-settings>=2.7.1",
"pyyaml>=6.0.2",
"tzdata>=2025.1",
"typer>=0.15.1",
"jinja2>=3.1.5",
"openpyxl>=3.1.5",
"netmiko>=4.5.0",
"tcppinglib>=2.0.4",
"fastapi>=0.115.11",
"uvicorn>=0.34.0",
"python-multipart>=0.0.20",
"itsdangerous>=2.2.0",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ruff>=0.9.3",
"pytest>=8.3.4",
"pre-commit>=4.2.0",
"pytest-cov>=6.0.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/netty"]
[tool.pytest.ini_options]
addopts = "--cov-report term --cov-config=.coveragerc -W ignore:DeprecationWarning --cov=src -v"
xfail_strict = true
asyncio_mode = "auto"
testpaths = ["src/tests"]