-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpapergraph.asd
28 lines (27 loc) · 871 Bytes
/
papergraph.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
(defsystem "papergraph"
:version "0.1.5"
:author "Vladimir Dikan"
:license "MIT"
:depends-on ("parser-combinators"
"alexandria"
"serapeum"
"dexador"
"jonathan"
"arrows"
"bordeaux-threads"
"lparallel")
:components ((:module "src"
:components
((:file "main"))))
:description "Bibtex -> Graphviz-Dot converter. Using CrossRef to grab references."
:in-order-to ((test-op (test-op "papergraph/tests"))))
(defsystem "papergraph/tests"
:author "Vladimir Dikan"
:license "MIT"
:depends-on ("papergraph"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for papergraph"
:perform (test-op (op c) (symbol-call :rove :run c)))