]> git.rmz.io Git - my-scheme.git/blob - package.yaml
Print the sum of two arguments
[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
24 library:
25 source-dirs: src
26
27 executables:
28 my-scheme-exe:
29 main: Main.hs
30 source-dirs: app
31 ghc-options:
32 - -threaded
33 - -rtsopts
34 - -with-rtsopts=-N
35 dependencies:
36 - my-scheme
37
38 tests:
39 my-scheme-test:
40 main: Spec.hs
41 source-dirs: test
42 ghc-options:
43 - -threaded
44 - -rtsopts
45 - -with-rtsopts=-N
46 dependencies:
47 - my-scheme