forked from weavejester/hiccup
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 850 Bytes
/
Copy pathproject.clj
File metadata and controls
18 lines (18 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject hiccup "0.3.0"
:description "A fast library for rendering HTML in Clojure"
:url "http://github.com/weavejester/hiccup"
:dependencies [[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]]
:dev-dependencies [[lein-clojars "0.6.0"]
[swank-clojure "1.2.1"]
[autodoc "0.7.1"]]
:autodoc {:name "Hiccup"
:description "A fast library for rendering HTML in Clojure."
:copyright "Copyright 2009-2010 James Reeves"
:root "."
:source-path "src"
:web-src-dir "http://github.com/weavejester/hiccup/blob/"
:web-home "http://weavejester.github.com/hiccup"
:output-path "autodoc"
:namespaces-to-document ["hiccup"]
:load-except-list [#"/test/" #"project.clj"]})