packages feed

haquil-0.2.1.14: haquil.cabal

name               : haquil
version            : 0.2.1.14
synopsis           : A Haskell implementation of the Quil instruction set for quantum computing.
description        : This Haskell library implements the Quil language for quantum computing, as specified in "A Practical Quantum Instruction Set Architecture" \<https:\/\/arxiv.org\/abs\/1608.03355\/\>.

license            : MIT
license-file       : LICENSE
copyright          : (c) 2017-18 Brian W Bush

author             : Brian W Bush <code@functionally.io>
maintainer         : Brian W Bush <code@functionally.io>

homepage           : https://bitbucket.org/functionally/haquil
bug-reports        : https://bwbush.atlassian.net/projects/HQUIL/issues/
package-url        : https://bitbucket.org/functionally/quil/downloads/haquil-0.2.1.14.tar.gz

category           : Language
stability          : Unstable

cabal-version      : >= 1.10
build-type         : Simple
extra-source-files : ReadMe.md
                     ChangeLog.md

source-repository head
  type             : git
  location         : https://bitbucket.org/functionally/haquil

library
  exposed-modules  : Data.Qubit
                     Data.Qubit.Gate
                     Language.Quil.Execute
                     Language.Quil.Types
  other-modules    : Data.Int.Util
  hs-source-dirs   : src
  build-depends    : base                <  5
                   , bv                  >= 0.4.1
                   , data-binary-ieee754 >= 0.4.4
                   , data-default        >= 0.7.1
                   , hTensor             >= 0.9.1
                   , MonadRandom         >= 0.5.1
                   , random              >= 1.1
                   , vector              >= 0.12.0
  exposed          : True
  buildable        : True
  default-language : Haskell2010
  ghc-options      : -Wall

test-suite haquil-test
  main-is          : Test.hs
  hs-source-dirs   : src
  build-depends    : base
                   , bv
                   , data-binary-ieee754
                   , data-default
                   , hTensor
                   , MonadRandom
                   , QuickCheck
                   , random
                   , template-haskell
                   , vector
  type             : exitcode-stdio-1.0
  buildable        : True
  default-language : Haskell2010
  ghc-options      : -Wall