-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstat-generics.asd
More file actions
31 lines (29 loc) · 1.13 KB
/
stat-generics.asd
File metadata and controls
31 lines (29 loc) · 1.13 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
;;; -*- Mode: LISP; Syntax: ANSI-Common-lisp; Package: ASDF -*-
;;; Copyright (c) 2026 by Symbolics Pte. Ltd. All rights reserved.
;;; SPDX-License-identifier: MS-PL
(defsystem "stat-generics"
:name "Stat-Generics"
:version "1.0.0"
:license :MS-PL
:author "Steve Nunez <steve@symbolics.tech>"
:description "Generic function definitions for statistical operations"
:long-description "Generic function definitions for statistical operations"
:homepage "https://lisp-stat.dev/"
:source-control (:git "https://github.com/Lisp-Stat/stat-generics.git")
:bug-tracker "https://github.com/Lisp-Stat/stat-generics/issues"
:pathname "src/"
:components ((:file "pkgdcl")
(:file "weights")
(:file "generics"))
:in-order-to ((test-op (test-op "stat-generics/tests"))))
;;; Any sense in testing generic functions?
#+nil
(defsystem "stat-generics/tests"
:description "Tests for stat-generics"
:depends-on ("stat-generics"
"clunit2")
:pathname "tests/"
:components ((:file "test-package")
(:file "definitions"))
:perform (test-op (o s)
(uiop:symbol-call :stat-generics-tests :run-tests)))