packages feed

cpython-3.1.0: cpython.cabal

name: cpython
version: 3.1.0
synopsis: Bindings for libpython
license: GPL-3
license-file: license.txt
author: John Millikin
maintainer: jmillikin@gmail.com
copyright: Copyright (c) John Millikin 2009,
                     (c) Python Software Foundation 2001-2009.
build-type: Simple
cabal-version: >=1.4
category: Foreign
homepage: http://ianen.org/haskell/bindings/cpython/
tested-with: GHC==6.10.1, GHC==6.10.4
extra-source-files: hscpython-shim.h

library
  ghc-options: -Wall -fno-warn-orphans
  build-depends:
      base >=4 && < 5
    , bytestring
    , text

  build-tools:
    c2hs >= 0.15

  exposed-modules:
    CPython
    CPython.Types
    CPython.Types.ByteArray
    CPython.Types.Bytes
    CPython.Types.Capsule
    CPython.Types.Cell
    CPython.Types.Code
    CPython.Types.Complex
    CPython.Types.Dictionary
    CPython.Types.Exception
    CPython.Types.Float
    CPython.Types.Function
    CPython.Types.InstanceMethod
    CPython.Types.Integer
    CPython.Types.Iterator
    CPython.Types.List
    CPython.Types.Method
    CPython.Types.Module
    CPython.Types.Set
    CPython.Types.Slice
    CPython.Types.Tuple
    CPython.Types.Type
    CPython.Types.Unicode
    CPython.Types.WeakReference
    CPython.Protocols.Mapping
    CPython.Protocols.Number
    CPython.Protocols.Object
    CPython.Protocols.Sequence
    CPython.Constants
    CPython.Reflection
    CPython.System

  other-modules:
    CPython.Internal

  c-sources: hscpython-shim.c
  include-dirs: .

  pkgconfig-depends: python-3.1