From 1481cf7a43e86bd78ccefab28f93342828fcfdfd Mon Sep 17 00:00:00 2001 From: Patrick Guo Date: Mon, 25 Nov 2024 14:36:11 -0500 Subject: [PATCH] moving device templates to /usr/local/ --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 18d5091..2bab123 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ class CustomInstall(install): # pylint: disable='missing-class-docstring def run(self): shutil.copytree('./src/rs232_to_pdu/devices/', - '/usr/share/rs232-to-pdu/devices/', + '/usr/local/rs232-to-pdu/devices/', dirs_exist_ok=True) super().run() @@ -16,7 +16,7 @@ def run(self): with open('README.md', encoding='utf-8') as readme: setup( name='rs232-to-pdu', - version='1.1.6', + version='1.1.7', author='InkBridge Networks', package_dir={'': 'src'},