From aca82ac00a9f9d0e0b81ba43f32fd6d4f8b17b67 Mon Sep 17 00:00:00 2001 From: Matthew Siemens Date: Sun, 27 Mar 2016 20:46:23 -0600 Subject: [PATCH] Add license information to project.clj * Lots of tools like VersionEye check this to find out license status --- project.clj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project.clj b/project.clj index d4e4b6f..e5aa04d 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,7 @@ (defproject clojure-csv "2.0.2" :description "A simple library to read and write CSV files." + :license {:name "Eclipse Public License" + :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.3.0"]] :plugins [[perforate "0.3.2"]] :jvm-opts ["-Xmx1g"]