forked from tpapp/data-omnivore
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdfio.asd
46 lines (43 loc) · 1.5 KB
/
dfio.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
37
38
39
40
41
42
43
44
45
46
;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-Lisp; Package: ASDF -*-
;;; Copyright (c) 2021-2022 by Symbolics Pte. Ltd. All rights reserved.
(defsystem "dfio"
:version "1.0.2"
:licence :MS-PL
:author "Steve Nunez <[email protected]>"
:long-name "Data frame I/O"
:description "Common Lisp library for reading and writing data-frames"
: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/dfio.git")
:bug-tracker "https://github.com/Lisp-Stat/dfio/issues"
:depends-on ("alexandria"
"anaphora"
"data-frame"
#-genera "dexador"
"fare-csv"
"let-plus")
:serial t
:components ((:file "pkgdcl")
(:file "decimal")
(:file "string-table")
(:file "data-column")
(:file "utils")
(:file "write")
(:file "delimited-text")
(:file "data")
(:file "rdata"))
:in-order-to ((test-op (test-op "dfio/tests"))))
(defsystem "dfio/tests"
:version "1.0.0"
:description "Unit tests for DFIO."
:author "Steve Nunez <[email protected]>"
:depends-on ("dfio"
"clunit2")
:serial t
:components ((:file "tests"))
:perform (test-op (o s)
(let ((*print-pretty* t)) ;work around clunit issue #9
(symbol-call :clunit :run-suite
(find-symbol* :dfio-tests
:dfio-tests)))))