Search Gradle plugins

Version 1.0.2

1.0.2

Created 17 April 2018.

Manage pip dependencies and use python in gradle build

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.vyarus.use-python") version "1.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.vyarus:gradle-use-python-plugin:1.0.2")
      }
    }
    
    apply(plugin = "ru.vyarus.use-python")
  • Applying plugins to all subprojects .