]> Git — Sourcephile - haskell/localization.git/blob - localization.cabal
stack: bump to lts-12.25
[haskell/localization.git] / localization.cabal
1 name: localization
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 1.0.1.20180226
6 category: Data Structures
7 synopsis: Library for localization (l10n)
8 description:
9 This is a library to manage localization (l10n) of messages
10 according to some (builtin or user-defined) locales.
11 .
12 The type system ensures that each message has a localization
13 for each of the wanted locales.
14 .
15 Messages can be declared using a data type or a type class,
16 and then rendered to the wanted output type, using 'localize' (resp. 'loqualize').
17 .
18 For examples, see the source code of @Data.Locale.Tutorial@.
19 extra-doc-files:
20 license: GPL-3
21 license-file: COPYING
22 stability: experimental
23 author: Julien Moutinho <julm+localization@autogeree.net>
24 maintainer: Julien Moutinho <julm+localization@autogeree.net>
25 bug-reports: Julien Moutinho <julm+localization@autogeree.net>
26 -- homepage:
27
28 build-type: Simple
29 cabal-version: >= 1.18
30 tested-with: GHC==8.2.2
31 extra-source-files:
32 stack.yaml
33 extra-tmp-files:
34
35 Source-Repository head
36 location: git://git.autogeree.net/localization
37 type: git
38
39 Library
40 exposed-modules:
41 Data.Locale
42 Data.Locale.Tutorial
43 default-language: Haskell2010
44 default-extensions:
45 ghc-options:
46 -Wall
47 -Wincomplete-uni-patterns
48 -Wincomplete-record-updates
49 -fno-warn-tabs
50 -- -fhide-source-paths
51 build-depends:
52 base >= 4.10 && < 5
53 , containers >= 0.5
54 , text >= 1.2
55 , transformers >= 0.5