about summary refs log tree commit diff stats
path: root/project.clj
blob: 5b0d7192b7ff8c3b3a4643d42f48462ccef88992 (plain)
1
2
3
4
5
6
7
8
9
10
(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"]]
  :profiles {:dev {:dependencies [[expectations "2.0.9"]]}}
  :plugins [[lein-expectations "0.0.7"]]
  :main microformats.parser)