com.pswidersk.python-plugin
Owner: Przemysław Świderski
Gradle plugin to run Python projects.
https://github.com/PrzemyslawSwiderski/python-gradle-plugin
Sources: https://github.com/PrzemyslawSwiderski/python-gradle-plugin
Version 2.8.1 (latest)
2.8.1
Created 28 October 2024.
Plugin to setup Python and run scripts in Conda virtual environments.
Using the plugins DSL:
plugins {
id("com.pswidersk.python-plugin") version "2.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.pswidersk:python-gradle-plugin:2.8.1")
}
}
apply(plugin = "com.pswidersk.python-plugin")
Using the plugins DSL:
plugins {
id "com.pswidersk.python-plugin" version "2.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.pswidersk:python-gradle-plugin:2.8.1"
}
}
apply plugin: "com.pswidersk.python-plugin"