aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml44
1 files changed, 44 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..fb93c52
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,44 @@
1name: squeal-hspec
2version: 0.1.0.0
3github: "githubuser/squeal-hspec"
4license: BSD3
5author: "Author name here"
6maintainer: "example@example.com"
7copyright: "2019 Author name here"
8
9extra-source-files:
10- README.md
11- ChangeLog.md
12
13# Metadata used when publishing your package
14# synopsis: Short description of your package
15# category: Web
16
17# To avoid duplicated efforts in documentation and dealing with the
18# complications of embedding Haddock markup inside cabal files, it is
19# common to point users to the README.md file.
20description: Please see the README on GitHub at <https://github.com/githubuser/squeal-hspec#readme>
21
22dependencies:
23- base >= 4.7 && < 5
24- bytestring
25- squeal-postgresql
26- hspec
27- tmp-postgres
28- monad-control
29- transformers-base
30- generics-sop
31
32library:
33 source-dirs: src
34
35tests:
36 squeal-hspec-test:
37 main: Spec.hs
38 source-dirs: test
39 ghc-options:
40 - -threaded
41 - -rtsopts
42 - -with-rtsopts=-N
43 dependencies:
44 - squeal-hspec