From de856ee730660b772d577a64b0274c520a711b61 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 4 Jul 2022 13:54:40 +0300 Subject: [PATCH] Export IDEs templates --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 52693e06..2a41db90 100644 --- a/setup.py +++ b/setup.py @@ -62,10 +62,10 @@ setup( packages=find_packages(exclude=["tests.*", "tests"]) + ["scripts"], package_data={ "platformio": [ - "project/tpls/*/.*.tpl", - "project/tpls/*/*.tpl", - "project/tpls/*/*/*.tpl", - "project/tpls/*/.*/*.tpl", + "project/integration/tpls/*/.*.tpl", + "project/integration/tpls/*/*.tpl", + "project/integration/tpls/*/*/*.tpl", + "project/integration/tpls/*/.*/*.tpl", ], "scripts": ["99-platformio-udev.rules"], },