From d566eb2a36dca6ae4d523a26b74ce4e1c1e6f8c0 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 5 Sep 2015 10:45:09 +0300 Subject: [PATCH] Include subdirectories with tpls for project generator --- platformio/__init__.py | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/platformio/__init__.py b/platformio/__init__.py index 33f84f8d..1da24c3b 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (2, 3, "0b2") +VERSION = (2, 3, "0b3") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/setup.py b/setup.py index 1d72d87f..fcf664e2 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,9 @@ setup( "projectconftpl.ini", "boards/*.json", "ide/tpls/*/.*.tpl", - "ide/tpls/*/*.tpl" + "ide/tpls/*/*.tpl", + "ide/tpls/*/*/*.tpl", + "ide/tpls/*/.*/*.tpl" ] }, entry_points={