2021-03-31 15:39:34 +03:00
|
|
|
plugins {
|
2022-07-29 15:58:02 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2021-03-31 15:39:34 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-11-23 23:48:43 +03:00
|
|
|
kscience {
|
2021-05-08 14:10:57 +03:00
|
|
|
useHtml()
|
2021-03-31 15:39:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2021-03-31 15:39:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets.all {
|
2021-11-23 23:48:43 +03:00
|
|
|
languageSettings.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
|
2021-03-31 15:39:34 +03:00
|
|
|
}
|
2021-08-05 14:56:29 +03:00
|
|
|
|
|
|
|
tasks.processJupyterApiResources {
|
|
|
|
libraryProducers = listOf("space.kscience.kmath.jupyter.KMathJupyter")
|
|
|
|
}
|