Final work to get the build going.

This commit is contained in:
Piv
2020-04-19 14:17:00 +09:30
parent 86ac59aada
commit 4015f1501f
11 changed files with 41 additions and 34 deletions

View File

@@ -17,4 +17,11 @@ task copyPythonCode(type: Copy, dependsOn: configurations.python){
task build(type: Exec, dependsOn: copyPythonCode) {
commandLine 'python3', 'setup.py', 'bdist_wheel'
}
task clean {
doLast {
delete 'dist'
delete 'build'
}
}