ru.vyarus.use-python
Owner: Vyacheslav Rusakov
Manage pip dependencies and use python in gradle build
https://github.com/xvik/gradle-use-python-plugin
Sources: https://github.com/xvik/gradle-use-python-plugin.git
Version 4.1.0 (latest)
4.1.0
Created 09 November 2024.
Manage pip dependencies and use python in gradle build
Using the plugins DSL:
plugins {
id("ru.vyarus.use-python") version "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.vyarus:gradle-use-python-plugin:4.1.0")
}
}
apply(plugin = "ru.vyarus.use-python")
Using the plugins DSL:
plugins {
id "ru.vyarus.use-python" version "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.vyarus:gradle-use-python-plugin:4.1.0"
}
}
apply plugin: "ru.vyarus.use-python"