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",