com.martmists.kpy.kpy-plugin
Owner:
Martmists
KPy Plugin is a plugin to target the Python C API from Kotlin/Native.
https://github.com/martmists-gh/kpy-plugin
Sources: https://github.com/martmists-gh/kpy-plugin
Version 0.5.3 (latest)
Created 21 September 2022.
KPy Plugin is a plugin to target the Python C API from Kotlin/Native.
Using the plugins DSL:
plugins {
id("com.martmists.kpy.kpy-plugin") version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.martmists.kpy:kpy-plugin:0.5.3")
}
}
apply(plugin = "com.martmists.kpy.kpy-plugin")
Using the plugins DSL:
plugins {
id "com.martmists.kpy.kpy-plugin" version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.martmists.kpy:kpy-plugin:0.5.3"
}
}
apply plugin: "com.martmists.kpy.kpy-plugin"