File: MissingPy.cabal

package info (click to toggle)
missingpy 0.10.0.2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 464 kB
  • ctags: 42
  • sloc: haskell: 1,433; makefile: 129; ansic: 107
file content (52 lines) | stat: -rw-r--r-- 1,668 bytes parent folder | download
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
Name: MissingPy
Version: 0.10.0
License: GPL
Maintainer: John Goerzen <jgoerzen@complete.org>
Author: John Goerzen
license-file: COPYRIGHT
extra-source-files: COPYING, genexceptions.hs, README, INSTALL,
                    glue/excglue.h, glue/glue.h
Stability: Alpha
Copyright: Copyright (c) 2005-2008 John Goerzen
Synopsis: Haskell interface to Python
Description:  MissingPy is two things:
 .
 A Haskell binding for many C and Python libraries for tasks such as
 data compression, databases, etc.  This can be found in the
 MissingPy module tree.
 .
 Also, it's a low-level Haskell binding to the Python interpreter to
 enable development of hybrid applications that use both
 environments.  This can be found in the Python module tree.  The
 Haskell bindings above use this environment.
 .
 MissingPy permits you to call Python code from Haskell.  It does NOT
 permit you to call Haskell code from Python.
 .
 MissingPy is the companion to my MissingH library, and integrates with
 it.

Build-Type: Custom
-- Cabal-Version: >= 1.2 && < 1.3
Cabal-Version: >= 1.2
Flag splitBase
  description: Choose the new smaller, split-up package

Library
  Exposed-Modules: Python.Types,
   Python.Utils,
   Python.Objects,
   Python.Interpreter,
   Python.Exceptions,
   Python.Exceptions.ExcTypes,
   Python.Objects.File,
   Python.Objects.Dict,
   MissingPy.FileArchive.GZip,
   MissingPy.FileArchive.BZip2,
   MissingPy.AnyDBM
  Other-Modules: Python.ForeignImports
  Build-Depends: base, MissingH>=1.0.1, anydbm>=1.0.5
  C-Sources: glue/glue.c glue/excglue.c
  GHC-Options: -O2
  Extensions: ForeignFunctionInterface, TypeSynonymInstances,
              FlexibleInstances