-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSpreadsheetML.cabal
40 lines (31 loc) · 1.33 KB
/
SpreadsheetML.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
Name: SpreadsheetML
Version: 0.1
Synopsis: Write support for Excel's SpreadsheetML format
Description: Output XML in the SpreadsheetML namespace. This allows you
to generate XLS file for excel. Binary compressed Office Open Document format
not yet supported, but you can take this xml output and name it ".xls" and
Excel will be able to open the document as a spreadsheet.
License: BSD3
License-file: LICENSE
Author: Jason Dagit
Maintainer: [email protected]
Copyright: Galois, Inc.
Category: Text
Build-type: Simple
Cabal-version: >=1.8
Library
-- Modules exported by the library.
hs-source-dirs: src
Exposed-modules: Text.XML.SpreadsheetML.Types
Text.XML.SpreadsheetML.Writer
Text.XML.SpreadsheetML.Builder
-- Packages needed in order to build this package.
Build-depends: base > 3 && < 5,
xml >= 1.3 && < 1.4
-- Modules not exported by this package.
-- Other-modules:
-- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
-- Build-tools:
source-repository head
type: git
location: https://github.com/dagit/SpreadsheetML