summaryrefslogtreecommitdiff
path: root/8queens.cabal
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2019-05-29 20:06:05 -0400
committerSteven <steven.vasilogianis@gmail.com>2019-05-29 20:06:05 -0400
commitcbe440bb0adbfbccfdbbcedb29bf9408c0596866 (patch)
tree5b040044f331d82845fc0b68386d8d285dad1949 /8queens.cabal
Initial repository; needs clean up but it's working so let's not lose it
Diffstat (limited to '8queens.cabal')
-rw-r--r--8queens.cabal25
1 files changed, 25 insertions, 0 deletions
diff --git a/8queens.cabal b/8queens.cabal
new file mode 100644
index 0000000..be1e2b2
--- /dev/null
+++ b/8queens.cabal
@@ -0,0 +1,25 @@
1name: 8queens
2version: 0.1.0.0
3-- synopsis:
4-- description:
5homepage: https://github.com/svasilogianis/8queens#readme
6license: BSD3
7license-file: LICENSE
8author: Steven
9maintainer: steven.vasilogianis@gmail.com
10copyright: 2019 Steven
11category: Web
12build-type: Simple
13cabal-version: >=1.10
14extra-source-files: README.md
15
16executable 8queens
17 hs-source-dirs: src
18 main-is: Main.hs
19 default-language: Haskell2010
20 build-depends: base >= 4.7 && < 5,
21 linear,
22 lens,
23 matrix,
24 random,
25 vector