-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrary.json
42 lines (42 loc) · 996 Bytes
/
library.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
38
39
40
41
42
{
"name": "Regression",
"version": "1.0.1",
"description": "Easy-to-use Statistical Regressions. This library extends the Arduino ecosystem with the functionality of several easy-to-use statistical regressions.",
"keywords": [
"arduino",
"math",
"statistic"
],
"homepage": "https://nkaaf.github.io/Arduino-Regression",
"repository": {
"type": "git",
"url": "https://github.com/nkaaf/Arduino-Regression"
},
"authors": {
"name": "Niklas Kaaf",
"email": "[email protected]",
"url": "https://github.com/nkaaf",
"maintainer": true
},
"license": "LGPL-2.1-only",
"frameworks": "*",
"platforms": "*",
"headers": "Linear2DRegression.hpp",
"examples": [
{
"name": "Linear2DRegression",
"base": "examples/Regression/Linear2DRegression",
"files": [
"Linear2DRegression.ino"
]
}
],
"export": {
"include": [
"examples/*",
"src/*",
"library.json",
"LICENSE"
]
}
}