forked from funcool/cats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 770 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject funcool/cats "1.3.0-SNAPSHOT"
:description "Category Theory abstractions for Clojure"
:url "https://github.com/funcool/cats"
:license {:name "BSD (2 Clause)"
:url "http://opensource.org/licenses/BSD-2-Clause"}
:dependencies [[org.clojure/clojure "1.7.0" :scope "provided"]
[org.clojure/clojurescript "1.7.189" :scope "provided"]
[org.clojure/core.async "0.2.374" :scope "provided"]
[org.clojure/test.check "0.9.0" :scope "provided"]
[manifold "0.1.1" :scope "provided"]]
:deploy-repositories {"releases" :clojars
"snapshots" :clojars}
:source-paths ["src"]
:test-paths ["test"]
:jar-exclusions [#"\.swp|\.swo|user\.clj"])