magitek.asd @ ce9a7a79f999

Add a Markov generator
author Steve Losh <steve@stevelosh.com>
date Mon, 16 Jan 2017 22:39:22 +0000
parents d69d74b71d8f
children 824673714b91
(asdf:defsystem :magitek
  :description "Whimsical robots infused with just a hint of magic."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (:losh
               :chirp
               :sqlite
               :iterate
               :chancery
               :named-readtables
               :split-sequence
               :cl-arrows)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "database")
                             (:file "twitter")
                             (:file "markov")
                             (:module "robots"
                              :components ((:file "git-commands")))
                             (:file "main")))))