-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsloane.cabal
51 lines (43 loc) · 1.69 KB
/
sloane.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
Name: sloane
Version: 5.0.2
Synopsis: A command line interface to Sloane's OEIS.
Description: A command line interface to Sloane's On-Line Encyclopedia of
Integer Sequences with offline capabilities.
Homepage: http://akc.is/sloane
License: BSD3
License-file: LICENSE
Author: Anders Claesson
Maintainer: anders.claesson@gmail.com
Category: Math
Build-type: Custom
Extra-Source-Files: README.md sloane.1
Cabal-version: >=1.9.2
source-repository head
type: git
location: git://github.com/akc/sloane.git
Executable sloane
Main-is: sloane.hs
Other-Modules: Sloane.Bloom
Sloane.Config
Sloane.DB
Sloane.Download
Sloane.Entry
Sloane.OEIS
Sloane.Options
Sloane.Utils
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-missing-signatures
Build-depends: aeson >=0.8,
attoparsec >=0.11,
base >=4.8 && <5,
bloomfilter >=2.0,
bytestring >=0.10,
containers >=0.5,
directory >=1.2,
filepath >=1.3,
http-conduit >=2.1.7,
http-types >=0.8,
optparse-applicative >=0.10,
stringsearch >=0.3,
text >=0.11,
transformers >=0.3,
resourcet >=1.1