;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; cl-table.asd -- Hierarchical tables in Lisp ;;; ;;; Copyright (C) 2011, Roman Klochkov ;;; (defpackage #:cl-table-system (:use #:cl #:asdf)) (in-package #:cl-table-system) (defsystem cl-table :description "Hierarchical tables in Lisp" :author "Roman Klochkov " :version "0.9" :license "BSD" :depends-on (iterate) :serial t :components ((:file package) (:file table) (:file iterator)))