From 4919afc3d848927417f0035e9c199147a3fb2fec Mon Sep 17 00:00:00 2001 From: Jeroen van Bemmel Date: Fri, 27 Oct 2023 16:41:01 +0000 Subject: [PATCH] Packaging updates to address warnings --- napalm_sros/templates/__init__.py | 0 napalm_sros/utils/textfsm_templates/__init__.py | 0 pyproject.toml | 1 + setup.py | 1 + 4 files changed, 2 insertions(+) create mode 100644 napalm_sros/templates/__init__.py create mode 100644 napalm_sros/utils/textfsm_templates/__init__.py diff --git a/napalm_sros/templates/__init__.py b/napalm_sros/templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/napalm_sros/utils/textfsm_templates/__init__.py b/napalm_sros/utils/textfsm_templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml index 33eef13..7b769b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ version="1.0.1" description="Network Automation and Programmability Abstraction Layer driver for Nokia SR OS" readme = "README.md" requires-python = ">=3.7" +dynamic = [ "dependencies" ] classifiers = [ "Topic :: System :: Networking", "Programming Language :: Python :: 3", diff --git a/setup.py b/setup.py index 8da4843..810ad71 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,7 @@ name="napalm-sros", version="1.0.1", packages=find_packages(), + package_data={"napalm_sros.templates": ["*.js"], "napalm_sros.utils.textfsm_templates": ["*.tpl"]}, author="Nokia", author_email="", description="Network Automation and Programmability Abstraction Layer with Multivendor support",