-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlisp-stat.asd
36 lines (35 loc) · 1.23 KB
/
lisp-stat.asd
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
;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: ASDF -*-
;;; Copyright (c) 2021-2025 by Symbolics Pte. Ltd. All rights reserved.
;;; SPDX-License-identifier: MS-PL
(defsystem "lisp-stat"
:name "Lisp Statistics"
:version "1.4.1"
:license :MS-PL
:author "Steve Nunez <steve@symbolics.tech>"
:long-name "Statistical Computing in Common Lisp"
:description "A statistical computing environment for Common Lisp"
: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/lisp-stat.git")
:bug-tracker "https://github.com/Lisp-Stat/lisp-stat/issues"
:depends-on ("alexandria"
"alexandria+"
"array-operations"
"data-frame"
"distributions"
#-genera "dexador"
"dfio"
"num-utils"
"select"
"statistics"
"org.tfeb.conduit-packages")
:components ((:file "pkgdcls")
(:static-file #:LICENSE)
(:module "base"
:serial t
:components
((:file "variables"))) ;XLS style variable definitions
(:module "docs"
:components ((:file "doc-strings")))
(:file "ls-init")))