Use more correct "license:" in cabal file.
[haskell-cryptsy-api.git] / cryptsy-api.cabal
blob559f93063639b7216ec84690078eb8e70f561bae
1 name:                cryptsy-api
2 version:             0.2.1
3 synopsis:            Bindings for Cryptsy cryptocurrency exchange API.
4 description:         Bindings for Cryptsy cryptocurrency exchange API.
5 license:             AGPL-3
6 license-file:        LICENSE
7 author:              Boyd Stephen Smith Jr.
8 maintainer:          bss@iguanasuicide.net
9 copyright:           2013-5 Boyd Stephen Smith Jr.
10 category:            Web
11 build-type:          Simple
12 cabal-version:       >=1.8
13 extra-source-files:  LICENSE.GPL-3
14                    , src/Main.hs
16 source-repository head
17   type:     git
18   location: http://repo.or.cz/haskell-cryptsy-api.git
20 library
21   exposed-modules:     Cryptsy.API.Public
22                      , Cryptsy.API.Public.MarketData.Old
23                      , Cryptsy.API.Public.MarketData.New
24                      , Cryptsy.API.Public.Market
25                      , Cryptsy.API.Public.OrderData
26                      , Cryptsy.API.Public.OrderBook
27                      , Cryptsy.API.Public.Types
28                      , Cryptsy.API.Public.Types.MarketData
29                      , Cryptsy.API.Public.Types.Market
30                      , Cryptsy.API.Public.Types.Trade
31                      , Cryptsy.API.Public.Types.Time
32                      , Cryptsy.API.Public.Types.OrderBook
33                      , Cryptsy.API.Public.Types.Order
34                      , Cryptsy.API.Public.Types.Num
35                      , Cryptsy.API.Public.Types.Monad
36                      , Cryptsy.API.Public.Types.Error
38   other-modules:       Cryptsy.API.Public.Internal
39                      , Cryptsy.API.Public.Types.Internal
41   build-depends:       base >= 4.6 && < 4.9
42                      , aeson >= 0.6 && < 0.9
43                      , bytestring ==0.10.*
44                      , deepseq ==1.3.*
45                      , either >= 4.0 && < 4.4
46                      , http-client ==0.2.*
47                      , http-client-tls ==0.2.*
48                      , old-locale ==1.0.*
49                      , pipes-attoparsec ==0.4.*
50                      , pipes-http ==1.0.*
51                      , text >= 0.11 && < 1.2
52                      , time ==1.4.*
53                      , transformers ==0.3.*
54                      , unordered-containers ==0.2.*
55                      , vector ==0.10.*
57   hs-source-dirs:      src