forked from TeMPOraL/alice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alice.asd
83 lines (68 loc) · 3.13 KB
/
alice.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
;;;; alice.asd
(asdf:defsystem #:alice
:serial t
:long-name "Alice Margatroid"
:author "Jacek Złydach"
:version (:read-file-form "version.lisp" :at (1 2 2))
:description "IRC bot responding to queries based on natural language."
:long-description "Alice Margatroid, the Doll Maker of Bucuresti. An IRC-bot that pretends to be human."
:license "Teaware - do whatever you want with it, but I wouldn't mind getting invited for a cup of tea ;)."
:homepage "https://github.com/TeMPOraL/alice"
:bug-tracker "https://github.com/TeMPOraL/alice/issues"
:source-control (:git "https://github.com/TeMPOraL/alice.git")
:mailto "[email protected]"
:encoding :utf-8
:depends-on (#:closer-mop
#:cl-irc
#:alexandria
#:drakma
#:cl-unicode
#:cl-ppcre
#:cxml
#:cl-json
#:local-time
#:chronicity
#:trivial-timers
#:swank
#:marshal
#:hunchentoot
#:cl-who)
:in-order-to ((test-op (test-op :alice-tests)))
:components ((:file "package")
(:file "version")
(:module "utils"
:components ((:file "debug")
(:file "persistence")
(:file "string")
(:file "macros")))
(:file "language")
(:module "core"
:components ((:file "trivial-event-loop")
(:file "channel")
(:file "message")
(:file "person")
(:file "world-model")
(:file "input-matcher")
(:file "output-builder")
(:file "server")))
(:module "grimoire"
:components ((:file "email")
(:file "github")
(:file "google")
(:file "frequencies")
(:file "meetups")
(:file "notifications")
(:file "people")
(:file "package-tracking")
(:file "pushover")
(:file "tinyurl")
(:file "varia")
(:file "wolfram-alpha")))
(:file "main" :depends-on ("grimoire"))
(:module "specials"
:components ((:file "blueline")
(:file "comments")
(:file "general-terms")
(:file "standard-answers")
(:file "specials")))
(:file "local-config" :depends-on ("grimoire"))))