-
Notifications
You must be signed in to change notification settings - Fork 27
/
META.json
37 lines (37 loc) · 912 Bytes
/
META.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "kmeans",
"abstract": "K-means clustering as a user-defined window function",
"description": "This module provides k-means calculation over row set.",
"version": "1.1.0",
"maintainer": "Hitoshi Harada <[email protected]>",
"license": "postgresql",
"provides": {
"kmeans": {
"abstract": "k-means clustering function",
"version": "1.1.0",
"file": "kmeans.sql",
"docfile": "doc/kmeans.md"
}
},
"resources": {
"bugtracker": {
"web": "http://github.com/umitanuki/kmeans-postgresql/issues/"
},
"repository": {
"url": "git://github.com/umitanuki/kmeans-postgresql.git",
"web": "http://github.com/umitanuki/kmeans-postgresql",
"type": "git"
}
},
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"clustering",
"window function",
"k-means",
"statistics",
"analysis"
]
}