Include subdirectories with tpls for project generator

This commit is contained in:
Ivan Kravets
2015-09-05 10:45:09 +03:00
parent 71890a34be
commit d566eb2a36
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 3, "0b2")
VERSION = (2, 3, "0b3")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -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={