-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (70 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "nbpull"
version = "0.4.0"
description = "🔍 Read-only CLI tool to pull IPAM data from NetBox"
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{ name = "Aditya Patel", email = "adityapatel0905@gmail.com" }
]
requires-python = ">=3.13"
keywords = ["netbox", "ipam", "network", "cli", "read-only"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Networking",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.28",
"pydantic>=2.10",
"pydantic-settings>=2.7",
"typer>=0.15",
"rich>=13.9",
"packaging>=24.0",
]
[project.scripts]
nbpull = "netbox_data_puller.cli:app"
[project.urls]
Homepage = "https://github.com/Champion2005/nbpull"
Documentation = "https://github.com/Champion2005/nbpull/tree/main/docs"
Repository = "https://github.com/Champion2005/nbpull"
Issues = "https://github.com/Champion2005/nbpull/issues"
Changelog = "https://github.com/Champion2005/nbpull/blob/main/CHANGELOG.md"
[build-system]
requires = ["uv_build>=0.9.27,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "netbox_data_puller"
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.25",
"respx>=0.22",
"ruff>=0.9",
"mypy>=1.14",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.isort]
known-first-party = ["netbox_data_puller"]
[tool.mypy]
python_version = "3.13"
strict = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: hits the live NetBox API (requires NETBOX_URL + NETBOX_TOKEN)",
]