quipper-cabal-0.9.0.0: quipper-cabal.cabal
-- The name of the package.
name: quipper-cabal
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.9.0.0
-- A short (one-line) description of the package.
synopsis:
Some functions to aid in the creation of Cabal packages for Quipper.
-- A longer description of the package.
description:
This package provides functions that can be used in custom Setup.hs
scripts, to aid in creating Cabal packages for Quipper programs.
Specifically, this allows Cabal to access the Quipper preprocessor.
-- URL for the project homepage or repository.
homepage: http://www.mathstat.dal.ca/~selinger/quipper/
-- The license under which the package is released.
license: BSD3
-- The file containing the license text.
license-file: COPYRIGHT
-- The package author(s).
author: Peter Selinger
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: selinger@mathstat.dal.ca
-- A copyright notice.
copyright: Copyright (c) 2011-2019. All rights reserved.
-- A classification category for future use by the package catalogue
-- Hackage. These categories have not yet been specified, but the
-- upper levels of the module hierarchy make a good start.
category: Quipper
-- The type of build used by this package.
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >= 1.8
-- A list of additional files to be included in source distributions
-- built with setup sdist.
extra-source-files: ChangeLog
library
-- Modules exported by the library.
exposed-modules: Quipper.Distribution.Preprocessor
-- Modules included in this library but not exported.
other-modules:
-- Other library packages from which modules are imported.
build-depends: base >= 4.5 && < 5,
quipper-language >= 0.9.0.0,
process >= 1.1,
Cabal >= 1.24