kmath/kmath-for-real/build.gradle.kts

50 lines
1.2 KiB
Plaintext
Raw Normal View History

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()
2024-02-17 21:32:26 +03:00
wasm()
2023-02-03 19:32:53 +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-11-29 13:32:20 +03:00
readme {
description = """
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
}