chancery.asd @ 25f05d94b336

Clarify License
author Steve Losh <steve@stevelosh.com>
date Fri, 03 Nov 2017 23:45:02 -0400
parents d6aa232e6306
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")))))