all repos — archive/microformats @ 062fcf6126c71601fa677bfab13bacdab78ec857

Incomplete Clojure microformats library

project.clj (view raw)

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)