diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | hypnotisml.asd | 9 | ||||
-rw-r--r-- | qlfile | 0 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae40749 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.qlot/ diff --git a/hypnotisml.asd b/hypnotisml.asd index 98a1549..583548b 100644 --- a/hypnotisml.asd +++ b/hypnotisml.asd @@ -1,13 +1,12 @@ ;;;; hypnotisml.asd (asdf:defsystem #:hypnotisml - :description "Describe hypnotisml here" - :author "Your Name <your.name@example.com>" - :license "Specify license here" + :description "A CL HTML Builder with In-Browser Interactivity." + :author "colin@cicadas.surf" + :license "Unlicense" :version "0.0.1" :pathname "src/" :serial t :depends-on (#:def #:alexandria #:parenscript #:argot) :components ((:file "package") - (:file "hypnotisml") - (:file "dom-transform"))) + (:file "hypnotisml"))) |