xlsx-0.2.2: xlsx.cabal
Name: xlsx
Version: 0.2.2
Synopsis: Simple and incomplete Excel file parser/writer
Description:
This library can help you to get some data read and written in Office
Open XML xlsx format. Small subset of xlsx format is supported.
.
For examples look into "Codec.Xlsx".
.
Format is covered by ECMA-376 standard:
<http://www.ecma-international.org/publications/standards/Ecma-376.htm>
.
4th edition of the standard with the transitional schema is used for this library.
Extra-source-files:
CHANGELOG.markdown
Homepage: https://github.com/qrilka/xlsx
Bug-Reports: https://github.com/qrilka/xlsx/issues
License: MIT
License-file: LICENSE
Author: Tim, Max, Kirill Zaborsky
Maintainer: qrilka@gmail.com
Category: Codec
Build-type: Simple
Tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2
Cabal-version: >=1.10
Library
Hs-source-dirs: src
Exposed-modules: Codec.Xlsx
, Codec.Xlsx.Types
, Codec.Xlsx.Types.Comments
, Codec.Xlsx.Types.Common
, Codec.Xlsx.Types.Internal
, Codec.Xlsx.Types.Internal.CustomProperties
, Codec.Xlsx.Types.Internal.Relationships
, Codec.Xlsx.Types.Internal.SharedStringTable
, Codec.Xlsx.Types.RichText
, Codec.Xlsx.Types.SheetViews
, Codec.Xlsx.Types.PageSetup
, Codec.Xlsx.Types.StyleSheet
, Codec.Xlsx.Types.Variant
, Codec.Xlsx.Lens
, Codec.Xlsx.Parser
, Codec.Xlsx.Parser.Internal
, Codec.Xlsx.Formatted
, Codec.Xlsx.Writer
, Codec.Xlsx.Writer.Internal
Build-depends: base == 4.*
, binary-search
, bytestring >= 0.10.0.2
, conduit >= 1.0.0
, containers >= 0.5.0.0
, data-default
, digest == 0.0.*
, extra
, filepath
, lens >= 3.8 && < 5
, mtl >= 2.1
, network-uri
, old-locale >= 1.0.0.5
, safe >= 0.3
, text >= 0.11.3.1
, time >= 1.4.0.1
, transformers >= 0.3.0.0
, unordered-containers
, utf8-string >= 0.3.7
, vector >= 0.10
, xml-conduit >= 1.1.0
, xml-types == 0.3.*
, zip-archive >= 0.2
, zlib >= 0.5.4.0
, base64-bytestring
Default-Language: Haskell2010
Other-Extensions: CPP
DeriveDataTypeable
FlexibleInstances
NoMonomorphismRestriction
OverloadedStrings
RankNTypes
RecordWildCards
TemplateHaskell
TupleSections
test-suite data-test
type: exitcode-stdio-1.0
main-is: DataTest.hs
hs-source-dirs: test/
Build-Depends: base
, containers
, time
, xlsx
, xml-conduit >= 1.1.0
, smallcheck
, HUnit
, tasty
, tasty-smallcheck
, tasty-hunit
, lens
, bytestring
, vector
, raw-strings-qq
, unordered-containers
Default-Language: Haskell2010
source-repository head
type: git
location: git://github.com/qrilka/xlsx.git