-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcl-gists.asd
39 lines (37 loc) · 1.13 KB
/
cl-gists.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
#|
This file is a part of cl-gists project.
Copyright (c) 2015 Rudolph Miller ([email protected])
|#
#|
Gists API Wrapper for Common Lisp.
Author: Rudolph Miller ([email protected])
|#
(defsystem "cl-gists"
:version "0.1"
:author "Rudolph Miller"
:license "MIT"
:homepage "https://github.com/Rudolph-Miller/cl-gists"
:depends-on ("cl-syntax"
"cl-syntax-annot"
"alexandria"
"local-time"
"trivial-types"
"quri"
"dexador"
"babel"
"jonathan"
"uiop")
:components ((:module "src"
:serial t
:components
((:file "util")
(:file "user")
(:file "file")
(:file "fork")
(:file "history")
(:file "gist")
(:file "api")
(:file "cl-gists"))))
:description "Gists API Wrapper for Common Lisp."
;;:long-description #.(read-file-string (subpathname *load-pathname "README.md"))
:in-order-to ((test-op (test-op "cl-gists-test"))))