-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick-plot.asd
More file actions
34 lines (32 loc) · 1.31 KB
/
quick-plot.asd
File metadata and controls
34 lines (32 loc) · 1.31 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
;;; -*- Mode: LISP; Syntax: ANSI-Common-lisp; Package: ASDF -*-
;;; Copyright (c) 2026 by Symbolics Pte. Ltd. All rights reserved.
(defsystem "quick-plot"
:name "Quick Plot"
:version "1.4.0"
:license :MS-PL
:author "Steve Nunez <steve@symbolics.tech>"
:long-name "GGPlot style plotting with Common Lisp"
:description "A Grammar of Graphics plotting library for Common Lisp providing quick statistical visualizations and layered customization."
: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/quick-plot.git")
:bug-tracker "https://github.com/Lisp-Stat/quick-plot/issues"
:depends-on ("plot/vega")
:components ((:static-file #:LICENSE)
(:file "pkgdcls")
(:file "qplot")
(:file "gg")
(:file "geom"))
:in-order-to ((test-op (test-op "quick-plot/tests"))))
(defsystem "quick-plot/tests"
:version "1.0.0"
:description "Regression tests for quick-plot"
:depends-on ("quick-plot" "clunit2")
:serial t
:pathname "tests/"
:components ((:file "test-package")
(:file "qplot-tests"))
:perform (test-op (o s)
(declare (ignore o s))
(symbol-call :quick-plot-tests :run-tests)))