chancery.asd @ 93a99efafe6f

Update docs.  Project is in Quicklisp now
author Steve Losh <steve@stevelosh.com>
date Mon, 18 Dec 2017 17:45:40 -0500
parents 25f05d94b336
children dc7093d4922e
(asdf:defsystem :chancery
  :description "A library for procedurally generating text, inspired by Tracery."

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

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

  :depends-on (:named-readtables)

  :in-order-to ((asdf:test-op (asdf:test-op :chancery.test)))

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "readtable")
                             (:file "chancery")))))