Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit d0c73bc0 authored by Laurent VENIER's avatar Laurent VENIER :speech_balloon:
Browse files

Merge branch 'fix_template_file_missing' into 'main'

Fixed plugin template files are missing

See merge request !19
parents df8ef7b9 3fad8606
No related branches found
No related tags found
1 merge request!19Fixed plugin template files are missing
Pipeline #69663 passed
......@@ -15,3 +15,5 @@ COPY requirements.txt /opt/netbox/plugins
COPY netbox_configuration/plugins.py /etc/netbox/config/plugins.py
RUN pip install -r /opt/netbox/plugins/requirements.txt
RUN rm -rf /opt/netbox/plugins
recursive-include src *.html
global-include *.html
......@@ -5,7 +5,7 @@ class NetBoxRpsConfig(PluginConfig):
name = 'netbox_rps_plugin'
verbose_name = 'NetBox RPS'
description = 'A Netbox plugin to add RPS resources'
version = '0.8.0'
version = '0.8.1'
author = "Vincent Simonin"
author_email = "vincent.simonin@ext.ec.europa.eu"
base_url = 'rps'
......
from setuptools import find_packages, setup
setup(
name='netbox-rps-plugin',
version='0.8.0',
name='netbox_rps_plugin',
version='0.8.1',
description='A Netbox plugin to add RPS resources',
install_requires=[],
packages=find_packages(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment