-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheros.cabal
57 lines (52 loc) · 1.59 KB
/
eros.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: eros
version: 0.5.3.2
synopsis: A text censorship library.
description:
A Haskell library for censoring text, using
<http://contentfilter.futuragts.com/phraselists/ DansGuardian phraselists>.
I converted the phraselists into JSON. You can view the converted phraselists
<https://github.com/pharpend/eros/tree/master/res/phraselists-pretty here>.
I recommend looking at the API documentation for 'Text.Eros' if you want an
idea of how to use the library. I publish the documentation
<https://pharpend.github.io/eros-haddock/ on GitHub>.
license: BSD3
license-file: LICENSE
author: Peter Harpending
maintainer: Peter Harpending <[email protected]>
copyright: 2014, Peter Harpending.
category: Text
build-type: Simple
data-files:
res/schemata/*.json
res/phraselists-ugly/*.json
cabal-version: >=1.10
extra-source-files:
README.md
res/schemata/*.json
res/phraselists-pretty/*.json
library
exposed-modules:
Paths_eros
, Text.Eros
, Text.Eros.Message
, Text.Eros.Phrase
, Text.Eros.Phraselist
other-modules:
other-extensions:
FlexibleInstances
, OverloadedStrings
build-depends:
aeson >=0.8 && <0.9
, base >=4.6 && <4.8
, bytestring >=0.10 && <0.11
, containers >=0.5 && <0.6
, text >=1.1 && <1.2
hs-source-dirs: src/
default-language: Haskell2010
ghc-options:
-Wall
-O2
source-repository head
type: git
location: https://github.com/pharpend/eros.git
branch: master