Move car python code into src subdirectory

This commit is contained in:
Piv
2020-04-19 12:30:00 +09:30
parent acdc822d5d
commit 3946ebc660
59 changed files with 7 additions and 12 deletions

View File

@@ -12,5 +12,9 @@ dependencies {
task copyPythonCode(type: Copy, dependsOn: configurations.python){
// Copy python protobuf code from proto project.
from zipTree(configurations.python.asPath)
into '.'
into './src'
}
task build(type: Exec, dependsOn: copyPythonCode) {
commandLine 'python3', 'setup.py', 'bdist_wheel'
}