xvik / gradle-use-python-plugin

Use python modules in gradle build
https://xvik.github.io/gradle-use-python-plugin/
MIT License
68 stars 18 forks source link
docker gradle gradle-plugin python virtualenv

Gradle use-python plugin

License CI Appveyor build status codecov

DOCUMENTATION: https://xvik.github.io/gradle-use-python-plugin/

About

Plugin does not install python and pip itself and use globally installed python (by default). It's easier to prepare python manually because python have good compatibility (from user perspective) and does not need to be updated often.

Also, plugin could run python inside docker container to avoid local python installation.

The only plugin intention is to simplify python usage from gradle. By default, plugin creates python virtualenv inside the project and installs all modules there so each project has its own python (copy) and could not be affected by other projects or system changes.

Features:

Who's using (usage examples)

Summary

Setup

Maven Central Gradle Plugin Portal

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'ru.vyarus:gradle-use-python-plugin:4.0.0'
    }
}
apply plugin: 'ru.vyarus.use-python'

OR

plugins {
    id 'ru.vyarus.use-python' version '4.0.0'
}

Compatibility

Plugin compiled for java 8, compatible with java 11, 17. Supports python 2 (not tested anymore, but should work) and 3 on windows and linux (macos)

Gradle Version
7.0 4.0.0
5.3 3.0.0
5-5.2 2.3.0
4.x 1.2.0

Snapshots

Snapshots may be used through JitPack * Go to [JitPack project page](https://jitpack.io/#ru.vyarus/gradle-use-python-plugin) * Select `Commits` section and click `Get it` on commit you want to use or use `master-SNAPSHOT` to use the most recent snapshot * Add to `settings.gradle` (top most!) (exact commit hash might be used as version): ```groovy pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.id == 'ru.vyarus.use-python') { useModule('ru.vyarus:gradle-use-python-plugin:master-SNAPSHOT') } } } repositories { gradlePluginPortal() maven { url 'https://jitpack.io' } } } ``` * Use plugin without declaring version: ```groovy plugins { id 'ru.vyarus.use-python' } ```

Python & Pip

Make sure python and pip are installed:

python --version  
pip --version

On *nix python usually reference python2. For python3:

python3 --version  
pip3 --version

OR enable docker support to run python inside docker container

Usage

Read documentation

Might also like


gradle plugin generator