;;;; -*- Hen -*- ((egg "binary-heap.egg") ; This should never change ; List here all the files that should be bundled as part of your egg. (files "binary-heap.setup" "binary-heap-eggdoc.scm" "binary-heap.scm" "binary-heap.meta" "tests/run.scm") ; Your egg's license: (license "GPL-3") ; Pick one from the list of categories (see below) for your egg and ; enter it here. (category data) ; A list of eggs binary-heap depends on. (needs eggdoc datatype matchable) (test-depends test) (eggdoc "binary-heap-eggdoc.scm") (author "Ivan Raikov") (synopsis "Binary heap."))