-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcl-matplotlib.asd
More file actions
20 lines (19 loc) · 823 Bytes
/
cl-matplotlib.asd
File metadata and controls
20 lines (19 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defsystem #:cl-matplotlib
:version "0.0.0"
:description "Interactive matlab like plotting experience using python+matplotlib"
:author "Andrew J. Berkley <ajberkley@gmail.com>"
:long-name "Interactive matlab like plotting experience using python+matplotlib"
:pathname "src/"
:depends-on (#:py4cl2)
:components ((:static-file "python-code" :pathname #P"py4cl-modified.py")
(:file "cl-matplotlib"))
:license :BSD-3
:in-order-to ((asdf:test-op (asdf:test-op :cl-matplotlib))))
(defsystem #:cl-matplotlib/tests
:description "Unit tests for cl-matplotlib"
:author "Andrew J. Berkley <ajberkley@gmail.com>"
:license :BSD-3
:depends-on (#:parachute #:cl-matplotlib)
:pathname "test/"
:components ()
:perform (test-op (o c) (uiop:symbol-call :parachute :test :cl-matplotlib-tests)))