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