Synopsis and description in cabal file
Getty Ritter
9 years ago
1 | 1 | name: s-cargot |
2 | 2 | version: 0.1.0.0 |
3 | -- synopsis: | |
4 | -- description: | |
3 | synopsis: A flexible, extensible s-expression library. | |
4 | description: S-Cargot is a library for working with s-expressions in | |
5 | a modular and extensible way, opting for genericity and | |
6 | flexibility instead of speed. Instead of understanding | |
7 | one particular form of s-expression, the S-Cargot library | |
8 | exposes tools for parsing or emitting different kinds of | |
9 | s-expressions, including features not normally included | |
10 | in an s-expression library like reader macros or tight | |
11 | control over indentation in pretty-printing. | |
5 | 12 | license: BSD3 |
6 | 13 | license-file: LICENSE |
7 | 14 | author: Getty Ritter |
8 | maintainer: gdritter@galois.com | |
9 | -- copyright: | |
15 | maintainer: gettyritter@gmail.com | |
16 | copyright: 2015 Getty Ritter | |
10 | 17 | category: Data |
11 | 18 | build-type: Simple |
12 | -- extra-source-files: | |
13 | 19 | cabal-version: >=1.10 |
14 | 20 | |
15 | 21 | library |
23 | 29 | Data.SCargot.Comments, |
24 | 30 | Data.SCargot.Common, |
25 | 31 | Data.SCargot.HaskLike |
26 | -- other-modules: | |
27 | -- other-extensions: | |
28 | build-depends: base >=4.7 && <5, parsec, text, containers | |
29 | -- hs-source-dirs: | |
32 | build-depends: base >=4.7 && <5, | |
33 | parsec, | |
34 | text, | |
35 | containers | |
30 | 36 | default-language: Haskell2010 |