about summary refs log tree commit diff stats
path: root/project.clj
blob: 4223379a9ff35c4d0d36d99498a2a3e8cb9c0dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
(defproject microformats "0.1.0-SNAPSHOT"
  :description "HTML microformats parser"
  :url "https://github.com/alanpearce/microformats"
  :license {:name "MIT License"
            :url "http://opensource.org/licenses/MIT"}
  :dependencies [[org.clojure/clojure "1.6.0"]
                 [enlive "1.1.5"]
                 [clojurewerkz/urly "1.0.0"]]
  :profiles {:dev {:dependencies [[expectations "2.0.9"]]}}
  :plugins [[lein-expectations "0.0.7"]]
  :main microformats.parser)