netbox-render 0.1.4__tar.gz → 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,20 +1,32 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: netbox-render
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: NetBox plugin for subdivided device bay rack elevation rendering
5
5
  Author-email: Parag Mehta <pmehta@pmehta.com>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://github.com/paragm/netbox-render
7
+ Project-URL: Homepage, https://pypi.org/project/netbox-render/
8
+ Project-URL: GitHub, https://github.com/paragm/netbox-render
9
+ Project-URL: Repository, https://github.com/paragm/netbox-render.git
10
+ Project-URL: Documentation, https://github.com/paragm/netbox-render/blob/main/docs/shelf-devices-guide.md
8
11
  Project-URL: Changelog, https://github.com/paragm/netbox-render/blob/main/CHANGELOG.md
9
12
  Project-URL: Issues, https://github.com/paragm/netbox-render/issues
13
+ Keywords: netbox-render,netbox,netbox-plugin,netbox plugin,netbox community plugin
14
+ Classifier: Development Status :: 5 - Production/Stable
10
15
  Classifier: Framework :: Django
16
+ Classifier: Framework :: Django :: 5
17
+ Classifier: Intended Audience :: System Administrators
18
+ Classifier: Operating System :: OS Independent
11
19
  Classifier: Programming Language :: Python :: 3
12
20
  Classifier: Programming Language :: Python :: 3.12
13
21
  Classifier: Programming Language :: Python :: 3.13
14
22
  Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Topic :: System :: Networking
15
24
  Requires-Python: >=3.12.0
16
25
  Description-Content-Type: text/markdown
17
26
  License-File: LICENSE
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest; extra == "dev"
29
+ Requires-Dist: ruff; extra == "dev"
18
30
  Dynamic: license-file
19
31
 
20
32
  <p align="center">
@@ -42,7 +54,7 @@ Devices without bays are untouched.
42
54
 
43
55
  | Without plugin | With plugin |
44
56
  |:-:|:-:|
45
- | ![Stock NetBox elevation](docs/images/elevation-without-plugin.png) | ![With netbox-render](docs/images/elevation-with-plugin.png) |
57
+ | ![Stock NetBox elevation](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/images/elevation-without-plugin.png) | ![With netbox-render](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/images/elevation-with-plugin.png) |
46
58
  | Single opaque block | Subdivided with bay labels and role colors |
47
59
 
48
60
  ### Bay ordering
@@ -53,7 +65,7 @@ Bays sort alphabetically by name — there's no numeric position field in NetBox
53
65
 
54
66
  | NetBox | Plugin | Status |
55
67
  |--------|--------|--------|
56
- | 4.6.x | 0.1.4 | Tested |
68
+ | 4.6.x | 0.1.5 | Tested |
57
69
 
58
70
  Startup checks verify the patched method signature hasn't changed. If it has, the plugin raises a `RuntimeError` instead of loading.
59
71
 
@@ -93,7 +105,7 @@ When enabled, bay sections show the child device type's front/rear image with a
93
105
 
94
106
  ## Shelf device guide
95
107
 
96
- See [docs/shelf-devices-guide.md](docs/shelf-devices-guide.md) for a walkthrough on modeling rack shelves using device bays and how this plugin renders them.
108
+ See [Shelf-devices Guide](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/shelf-devices-guide.md) for a walkthrough on modeling rack shelves using device bays and how this plugin renders them.
97
109
 
98
110
  ## Known limitations
99
111
 
@@ -23,7 +23,7 @@ Devices without bays are untouched.
23
23
 
24
24
  | Without plugin | With plugin |
25
25
  |:-:|:-:|
26
- | ![Stock NetBox elevation](docs/images/elevation-without-plugin.png) | ![With netbox-render](docs/images/elevation-with-plugin.png) |
26
+ | ![Stock NetBox elevation](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/images/elevation-without-plugin.png) | ![With netbox-render](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/images/elevation-with-plugin.png) |
27
27
  | Single opaque block | Subdivided with bay labels and role colors |
28
28
 
29
29
  ### Bay ordering
@@ -34,7 +34,7 @@ Bays sort alphabetically by name — there's no numeric position field in NetBox
34
34
 
35
35
  | NetBox | Plugin | Status |
36
36
  |--------|--------|--------|
37
- | 4.6.x | 0.1.4 | Tested |
37
+ | 4.6.x | 0.1.5 | Tested |
38
38
 
39
39
  Startup checks verify the patched method signature hasn't changed. If it has, the plugin raises a `RuntimeError` instead of loading.
40
40
 
@@ -74,7 +74,7 @@ When enabled, bay sections show the child device type's front/rear image with a
74
74
 
75
75
  ## Shelf device guide
76
76
 
77
- See [docs/shelf-devices-guide.md](docs/shelf-devices-guide.md) for a walkthrough on modeling rack shelves using device bays and how this plugin renders them.
77
+ See [Shelf-devices Guide](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/shelf-devices-guide.md) for a walkthrough on modeling rack shelves using device bays and how this plugin renders them.
78
78
 
79
79
  ## Known limitations
80
80
 
@@ -0,0 +1 @@
1
+ __version__ = "0.1.5"
@@ -1,20 +1,32 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: netbox-render
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: NetBox plugin for subdivided device bay rack elevation rendering
5
5
  Author-email: Parag Mehta <pmehta@pmehta.com>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://github.com/paragm/netbox-render
7
+ Project-URL: Homepage, https://pypi.org/project/netbox-render/
8
+ Project-URL: GitHub, https://github.com/paragm/netbox-render
9
+ Project-URL: Repository, https://github.com/paragm/netbox-render.git
10
+ Project-URL: Documentation, https://github.com/paragm/netbox-render/blob/main/docs/shelf-devices-guide.md
8
11
  Project-URL: Changelog, https://github.com/paragm/netbox-render/blob/main/CHANGELOG.md
9
12
  Project-URL: Issues, https://github.com/paragm/netbox-render/issues
13
+ Keywords: netbox-render,netbox,netbox-plugin,netbox plugin,netbox community plugin
14
+ Classifier: Development Status :: 5 - Production/Stable
10
15
  Classifier: Framework :: Django
16
+ Classifier: Framework :: Django :: 5
17
+ Classifier: Intended Audience :: System Administrators
18
+ Classifier: Operating System :: OS Independent
11
19
  Classifier: Programming Language :: Python :: 3
12
20
  Classifier: Programming Language :: Python :: 3.12
13
21
  Classifier: Programming Language :: Python :: 3.13
14
22
  Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Topic :: System :: Networking
15
24
  Requires-Python: >=3.12.0
16
25
  Description-Content-Type: text/markdown
17
26
  License-File: LICENSE
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest; extra == "dev"
29
+ Requires-Dist: ruff; extra == "dev"
18
30
  Dynamic: license-file
19
31
 
20
32
  <p align="center">
@@ -42,7 +54,7 @@ Devices without bays are untouched.
42
54
 
43
55
  | Without plugin | With plugin |
44
56
  |:-:|:-:|
45
- | ![Stock NetBox elevation](docs/images/elevation-without-plugin.png) | ![With netbox-render](docs/images/elevation-with-plugin.png) |
57
+ | ![Stock NetBox elevation](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/images/elevation-without-plugin.png) | ![With netbox-render](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/images/elevation-with-plugin.png) |
46
58
  | Single opaque block | Subdivided with bay labels and role colors |
47
59
 
48
60
  ### Bay ordering
@@ -53,7 +65,7 @@ Bays sort alphabetically by name — there's no numeric position field in NetBox
53
65
 
54
66
  | NetBox | Plugin | Status |
55
67
  |--------|--------|--------|
56
- | 4.6.x | 0.1.4 | Tested |
68
+ | 4.6.x | 0.1.5 | Tested |
57
69
 
58
70
  Startup checks verify the patched method signature hasn't changed. If it has, the plugin raises a `RuntimeError` instead of loading.
59
71
 
@@ -93,7 +105,7 @@ When enabled, bay sections show the child device type's front/rear image with a
93
105
 
94
106
  ## Shelf device guide
95
107
 
96
- See [docs/shelf-devices-guide.md](docs/shelf-devices-guide.md) for a walkthrough on modeling rack shelves using device bays and how this plugin renders them.
108
+ See [Shelf-devices Guide](https://raw.githubusercontent.com/paragm/netbox-render/main/docs/shelf-devices-guide.md) for a walkthrough on modeling rack shelves using device bays and how this plugin renders them.
97
109
 
98
110
  ## Known limitations
99
111
 
@@ -8,5 +8,6 @@ netbox_render/version_check.py
8
8
  netbox_render.egg-info/PKG-INFO
9
9
  netbox_render.egg-info/SOURCES.txt
10
10
  netbox_render.egg-info/dependency_links.txt
11
+ netbox_render.egg-info/requires.txt
11
12
  netbox_render.egg-info/top_level.txt
12
13
  tests/test_elevation_patch.py
@@ -0,0 +1,4 @@
1
+
2
+ [dev]
3
+ pytest
4
+ ruff
@@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
  name = "netbox-render"
7
7
  dynamic = ["version"]
8
8
  description = "NetBox plugin for subdivided device bay rack elevation rendering"
9
+ keywords = ['netbox-render', 'netbox', 'netbox-plugin', 'netbox plugin', 'netbox community plugin']
9
10
  readme = "README.md"
10
11
  requires-python = ">=3.12.0"
11
12
  license = "Apache-2.0"
@@ -13,15 +14,26 @@ authors = [
13
14
  {name = "Parag Mehta", email = "pmehta@pmehta.com"},
14
15
  ]
15
16
  classifiers = [
17
+ "Development Status :: 5 - Production/Stable",
16
18
  "Framework :: Django",
19
+ "Framework :: Django :: 5",
20
+ "Intended Audience :: System Administrators",
21
+ "Operating System :: OS Independent",
17
22
  "Programming Language :: Python :: 3",
18
23
  "Programming Language :: Python :: 3.12",
19
24
  "Programming Language :: Python :: 3.13",
20
25
  "Programming Language :: Python :: 3.14",
26
+ "Topic :: System :: Networking",
21
27
  ]
22
28
 
29
+ [project.optional-dependencies]
30
+ dev = ["pytest", "ruff"]
31
+
23
32
  [project.urls]
24
- Homepage = "https://github.com/paragm/netbox-render"
33
+ Homepage = "https://pypi.org/project/netbox-render/"
34
+ GitHub = "https://github.com/paragm/netbox-render"
35
+ Repository = "https://github.com/paragm/netbox-render.git"
36
+ Documentation = "https://github.com/paragm/netbox-render/blob/main/docs/shelf-devices-guide.md"
25
37
  Changelog = "https://github.com/paragm/netbox-render/blob/main/CHANGELOG.md"
26
38
  Issues = "https://github.com/paragm/netbox-render/issues"
27
39
 
@@ -31,3 +43,10 @@ version = {attr = "netbox_render.version.__version__"}
31
43
  [tool.setuptools.packages.find]
32
44
  include = ["netbox_render*"]
33
45
  exclude = ["tests*"]
46
+
47
+ [tool.ruff]
48
+ target-version = "py312"
49
+ line-length = 120
50
+
51
+ [tool.pytest.ini_options]
52
+ testpaths = ["tests"]
@@ -1 +0,0 @@
1
- __version__ = "0.1.4"
File without changes
File without changes