Add AGPL license and references to it
[wolf] / src / main / package.lisp
index bb4da60ce3f97999e8081f24306792e6b6d8929b..04498cfb195088c5be00dfc291b5718f83c27e7f 100644 (file)
@@ -1,2 +1,10 @@
-(defpackage #:style-checker (:use :cl))
+; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3.  See distributed LICENSE.txt.
+(defpackage #:wolf (:use :cl)
+ (:export #:check-file #:check-directory #:pretty-print-check-directory)
+ (:documentation
+  "Enforces arbitrary set of style guidelines.
 
+This package walks over common lisp code to make sure it adheres to a set
+of syntactic guidelines designed to ensure a semblance of uniformity.  No
+current one was found that could be configured to work the way this one does,
+so instead of writing a configurable tool, another unconfigurable one was born."))