From 310d6dc24cd6e56e1222dfa05293aa7e19215045 Mon Sep 17 00:00:00 2001 From: Jay Johnson <133936386+dersecure@users.noreply.github.com> Date: Fri, 13 Jun 2025 16:02:49 -0600 Subject: [PATCH] include default certificates --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index accdddd..59d7ad0 100644 --- a/setup.py +++ b/setup.py @@ -9,14 +9,17 @@ setup( name='pysunspec2', - version='1.3.0', + version='1.3.1', description='Python SunSpec Tools', license="Apache Software License, Version 2.0", author='SunSpec Alliance', author_email='support@sunspec.org', url='https://sunspec.org/', packages=['sunspec2', 'sunspec2.modbus', 'sunspec2.file', 'sunspec2.tests'], - package_data={'sunspec2.tests': ['test_data/*'], 'sunspec2': ['models/json/*']}, + package_data={ + 'sunspec2.tests': ['test_data/*', 'tls_data/*'], + 'sunspec2': ['models/json/*'], + } scripts=['scripts/suns.py'], python_requires='>=3.5', extras_require={