-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreleaser.cabal
41 lines (38 loc) · 914 Bytes
/
releaser.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
cabal-version: 2.4
name: releaser
synopsis: Automation of Haskell package release process
version: 0.3.0.0
license: Apache-2.0
license-file: LICENSE
maintainer: [email protected]
author: Domen Kozar
category: Development
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/domenkozar/releaser/
library
exposed-modules:
Releaser.Primitives
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
build-depends:
base >=4.7 && <5,
Cabal -any,
regex-tdfa -any,
process -any,
pretty-terminal -any,
text -any
executable releaser
main-is: Main.hs
default-language: Haskell2010
hs-source-dirs: releaser
other-modules:
Paths_releaser
autogen-modules:
Paths_releaser
build-depends:
base -any,
releaser -any