]> Git — Sourcephile - haskell/localization.git/blob - localization.cabal
Add a tutorial.
[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 (library-defined or user-defined) locales.
11 The type system ensures that each message has a localization
12 for each of the wanted locales.
13
14 Messages can be declared using a data type, or using a type class.
15
16 See @Tutorial.lhs@ for examples.
17 extra-doc-files:
18 license: GPL-3
19 license-file: COPYING
20 stability: experimental
21 author: Julien Moutinho <julm+localization@autogeree.net>
22 maintainer: Julien Moutinho <julm+localization@autogeree.net>
23 bug-reports: Julien Moutinho <julm+localization@autogeree.net>
24 -- homepage:
25
26 build-type: Simple
27 cabal-version: >= 1.18
28 tested-with: GHC==8.2.2
29 extra-source-files:
30 stack.yaml
31 extra-tmp-files:
32
33 Source-Repository head
34 location: git://git.autogeree.net/localization
35 type: git
36
37 Library
38 exposed-modules:
39 Data.Locale
40 Data.Locale.Tutorial
41 default-language: Haskell2010
42 default-extensions:
43 ghc-options:
44 -Wall
45 -Wincomplete-uni-patterns
46 -Wincomplete-record-updates
47 -fno-warn-tabs
48 -- -fhide-source-paths
49 build-depends:
50 base >= 4.10 && < 5
51 , containers >= 0.5
52 , text >= 1.2
53 , transformers >= 0.5