-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatistics.asd
More file actions
77 lines (73 loc) · 3.03 KB
/
statistics.asd
File metadata and controls
77 lines (73 loc) · 3.03 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: ASDF -*-
;;; Copyright (c) 2022, 2024-2026 by Symbolics Pte. Ltd. All rights reserved.
;;; SPDX-License-identifier: MS-PL
(defsystem "statistics/streaming"
:name "Online (streaming) statistics"
:version "1.4.0"
:license :MS-PL
:author "Steve Nunez <steve@symbolics.tech>"
:description "Single-pass, numerically stable accumulators for streaming data."
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "streaming-description.text"))
:homepage "https://lisp-stat.dev/"
:source-control (:git "https://github.com/Lisp-Stat/statistics.git")
:bug-tracker "https://github.com/Lisp-Stat/statistics/issues"
:depends-on (#:alexandria
#:anaphora
#:let-plus
#:num-utils
#:stat-generics)
:pathname "src/"
:components ((:file "streaming"))
:in-order-to ((test-op (test-op "statistics/tests"))))
(defsystem "statistics/batch"
:name "Batch statistics"
:version "1.4.0"
:license :MS-PL
:author "Steve Nunez <steve@symbolics.tech>"
:description "Descriptive statistics for in-memory sequences and arrays."
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "batch-description.text"))
:homepage "https://lisp-stat.dev/"
:source-control (:git "https://github.com/Lisp-Stat/statistics.git")
:bug-tracker "https://github.com/Lisp-Stat/statistics/issues"
:depends-on (#:alexandria
#:let-plus
#:num-utils
#:stat-generics)
:pathname "src/"
:components ((:file "batch"))
:in-order-to ((test-op (test-op "statistics/tests"))))
(defsystem "statistics"
:name "Statistics functions"
:version "1.4.0"
:license :MS-PL
:author "Steve Nunez <steve@symbolics.tech>"
:long-name "Common Lisp statistical functions for streaming data"
:description "A consolidated system of statistical functions for streaming data"
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "description.text"))
:homepage "https://lisp-stat.dev/"
:source-control (:git "https://github.com/Lisp-Stat/statistics.git")
:bug-tracker "https://github.com/Lisp-Stat/statistics/issues"
:depends-on ("statistics/streaming"
"statistics/batch")
:in-order-to ((test-op (test-op "statistics/tests"))))
(defsystem "statistics/tests"
:version "1.1.0"
:description "Unit tests for the statistics system"
:author "Steve Nunez <steve@symbolics.tech>"
:license :MS-PL
:depends-on ("statistics/streaming"
"statistics/batch"
"stat-generics"
"num-utils"
"clunit2")
:serial t
:pathname "tests/"
:components ((:file "tstpkg")
(:file "main")
(:file "streaming")
(:file "batch"))
:perform (test-op (o s)
(uiop:symbol-call :statistics-tests :run-tests)))