-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatamuse.asd
More file actions
18 lines (17 loc) · 567 Bytes
/
Copy pathdatamuse.asd
File metadata and controls
18 lines (17 loc) · 567 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;;;; datamuse.asd
(defsystem #:datamuse
:name "datamuse"
:description "Common Lisp library for accessing the Datamuse word-finding API"
:author "modula t."
:license "MIT"
:version "1.2"
:homepage "https://github.com/defaultxr/datamuse"
:bug-tracker "https://github.com/defaultxr/datamuse/issues"
:mailto "modula-t at pm dot me"
:source-control (:git "git@github.com:defaultxr/datamuse.git")
:depends-on (#:alexandria
#:drakma
#:yason)
:serial t
:components ((:file "package")
(:file "datamuse")))