2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2022-09-04 20:59:30 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
}
|
|
|
|
|
2022-09-11 15:27:38 +03:00
|
|
|
kscience {
|
2023-02-03 19:32:53 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
2022-09-04 20:59:30 +03:00
|
|
|
native()
|
2023-02-03 19:32:53 +03:00
|
|
|
|
2020-09-08 12:40:47 +03:00
|
|
|
dependencies {
|
2022-09-11 15:27:38 +03:00
|
|
|
api(projects.kmathCore)
|
|
|
|
}
|
2023-02-03 19:32:53 +03:00
|
|
|
|
|
|
|
testDependencies {
|
2022-09-11 15:27:38 +03:00
|
|
|
implementation(projects.testUtils)
|
2020-09-08 12:40:47 +03:00
|
|
|
}
|
2020-08-22 12:49:21 +03:00
|
|
|
}
|
2020-11-29 13:32:20 +03:00
|
|
|
|
|
|
|
readme {
|
|
|
|
description = """
|
2021-05-07 15:59:21 +03:00
|
|
|
Extension module that should be used to achieve numpy-like behavior.
|
2020-11-29 13:32:20 +03:00
|
|
|
All operations are specialized to work with `Double` numbers without declaring algebraic contexts.
|
|
|
|
One can still use generic algebras though.
|
|
|
|
""".trimIndent()
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2020-11-29 13:32:20 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
2021-03-16 21:17:26 +03:00
|
|
|
id = "DoubleVector",
|
2021-03-16 22:46:22 +03:00
|
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/real/DoubleVector.kt"
|
2022-09-11 15:27:38 +03:00
|
|
|
) {
|
2022-04-05 23:23:29 +03:00
|
|
|
"Numpy-like operations for Buffers/Points"
|
|
|
|
}
|
2020-11-29 13:32:20 +03:00
|
|
|
|
|
|
|
feature(
|
2021-03-16 21:17:26 +03:00
|
|
|
id = "DoubleMatrix",
|
2021-03-16 22:46:22 +03:00
|
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/real/DoubleMatrix.kt"
|
2022-09-11 15:27:38 +03:00
|
|
|
) {
|
2022-04-05 23:23:29 +03:00
|
|
|
"Numpy-like operations for 2d real structures"
|
|
|
|
}
|
2020-11-29 13:32:20 +03:00
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "grids",
|
2021-03-16 22:46:22 +03:00
|
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/structures/grids.kt"
|
2022-09-11 15:27:38 +03:00
|
|
|
) {
|
2022-04-05 23:23:29 +03:00
|
|
|
"Uniform grid generators"
|
|
|
|
}
|
2020-11-29 13:32:20 +03:00
|
|
|
}
|