-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigFile.cabal
More file actions
58 lines (55 loc) · 1.92 KB
/
ConfigFile.cabal
File metadata and controls
58 lines (55 loc) · 1.92 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Name: ConfigFile
Version: 1.2.0
License: BSD3
Maintainer: John Goerzen <jgoerzen@complete.org>
Author: John Goerzen
Copyright: Copyright (c) 2004-2014 John Goerzen
license-file: COPYRIGHT
extra-source-files: README,
COPYRIGHT, LGPL-2.1, BSD3,
testsrc/ConfigParser/test.cfg
Category: Parsing
homepage: http://software.complete.org/configfile
synopsis: Configuration file reading & writing
Description: Parser and writer for handling sectioned config files in
Haskell.
.
The ConfigFile module works with configuration files in a standard
format that is easy for the user to edit, easy for the programmer
to work with, yet remains powerful and flexible. It is inspired by,
and compatible with, Python's ConfigParser module. It uses files
that resemble Windows .INI-style files, but with numerous
improvements.
.
ConfigFile provides simple calls to both read and write config files.
It's possible to make a config file parsable by this module,
the Unix shell, and make.
Stability: Stable
Build-Type: Simple
Cabal-Version: >=1.8
Source-Repository head
Type: git
Location: https://github.com/jgoerzen/configfile
Library
Hs-Source-Dirs: src
Exposed-Modules: Data.ConfigFile,
Data.ConfigFile.Types,
Data.ConfigFile.Parser,
Data.ConfigFile.Monadic
Other-Modules: Data.ConfigFile.Lexer
Extensions: ExistentialQuantification,
UndecidableInstances, TypeSynonymInstances, FlexibleContexts,
FlexibleInstances
Build-Depends: parsec, base < 5,
mtl, MissingH>=1.0.0, containers
GHC-Options: -Wall
Test-Suite runtests
Type: exitcode-stdio-1.0
Build-depends: base, ConfigFile, MissingH, HUnit
Main-Is: runtests.hs
HS-Source-Dirs: testsrc
Other-Modules: Tests, ConfigParser.Maintest, ConfigParser.Parsertest
Extensions: ExistentialQuantification,
UndecidableInstances, CPP, TypeSynonymInstances, FlexibleContexts,
FlexibleInstances
GHC-Options: -Wall