summaryrefslogtreecommitdiff
path: root/project.clj
diff options
context:
space:
mode:
authorAsko Nõmm <asko@bien.ee>2021-10-02 01:26:07 -0300
committerAsko Nõmm <asko@bien.ee>2021-10-02 01:26:07 -0300
commit8a158dd3cff218223afb9dd77c567023795bfc7e (patch)
tree345cfbfdf430bbcfe684d219e20f2f4ef9035912 /project.clj
Initial commit
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj10
1 files changed, 10 insertions, 0 deletions
diff --git a/project.clj b/project.clj
new file mode 100644
index 0000000..36356c3
--- /dev/null
+++ b/project.clj
@@ -0,0 +1,10 @@
+(defproject ruuter "1.0.0"
+ :description "A tiny HTTP router"
+ :url "https://github.com/askonomm/ruuter"
+ :license {:name "MIT"
+ :url "https://raw.githubusercontent.com/askonomm/ruuter/master/LICENSE.txt"}
+ :dependencies [[org.clojure/clojure "1.10.1"]
+ [http-kit "2.5.3"]]
+ :main ruuter.core
+ :min-lein-version "2.0.0"
+ :repl-options {:init-ns ruuter.core})