kmath/kmath-jupyter/build.gradle.kts

20 lines
405 B
Plaintext
Raw Permalink Normal View History

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 {
2023-02-03 19:32:53 +03:00
api(spclibs.kotlinx.html)
2021-03-31 15:39:34 +03:00
api(project(":kmath-ast"))
api(project(":kmath-complex"))
api(project(":kmath-for-real"))
2021-05-08 14:10:57 +03:00
}
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
}
2021-08-05 14:56:29 +03:00
tasks.processJupyterApiResources {
libraryProducers = listOf("space.kscience.kmath.jupyter.KMathJupyter")
}