2021-03-31 15:39:34 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
|
|
|
kotlin("jupyter.api")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-ast"))
|
|
|
|
api(project(":kmath-complex"))
|
|
|
|
api(project(":kmath-for-real"))
|
2021-05-08 14:10:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kscience{
|
|
|
|
useHtml()
|
2021-03-31 15:39:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets.all {
|
|
|
|
languageSettings.useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
|
|
}
|