]> git.rmz.io Git - my-scheme.git/blob - package.yaml
Use do to parse numbers
[my-scheme.git] / package.yaml
1 name: my-scheme
2 version: 0.1.0.0
3 github: "Ram-Z/my-scheme"
4 license: GPLv3
5 author: "Samir Benmendil"
6 maintainer: "me@rmz.io"
7 copyright: "2018 Samir Benmendil"
8
9 extra-source-files:
10 - README.md
11
12 # Metadata used when publishing your package
13 # synopsis: Short description of your package
14 # category: Web
15
16 # To avoid duplicated efforts in documentation and dealing with the
17 # complications of embedding Haddock markup inside cabal files, it is
18 # common to point users to the README.md file.
19 description: Please see the README on Github at <https://github.com/githubuser/my-scheme#readme>
20
21 dependencies:
22 - base >= 4.7 && < 5
23 - parsec -any
24
25 library:
26 source-dirs: src
27
28 executables:
29 my-scheme-exe:
30 main: Main.hs
31 source-dirs: app
32 ghc-options:
33 - -threaded
34 - -rtsopts
35 - -with-rtsopts=-N
36 dependencies:
37 - my-scheme
38
39 tests:
40 my-scheme-test:
41 main: Spec.hs
42 source-dirs: test
43 ghc-options:
44 - -threaded
45 - -rtsopts
46 - -with-rtsopts=-N
47 dependencies:
48 - my-scheme