aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2019-02-01 18:29:08 +0000
committerYann Herklotz <ymherklotz@gmail.com>2019-02-01 18:29:08 +0000
commit798bfb5bc934cc312655d947863831482028a0ba (patch)
tree58fcae9b9f4a9df30f4f37d2eab688644cc15fd7
parent7ea4189e8643e4083ff345b0949e33d54371fe98 (diff)
downloadpfm-798bfb5bc934cc312655d947863831482028a0ba.tar.gz
pfm-798bfb5bc934cc312655d947863831482028a0ba.zip
Add travis file
-rw-r--r--.travis.yml0
-rw-r--r--pfm.cabal68
2 files changed, 35 insertions, 33 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.travis.yml
diff --git a/pfm.cabal b/pfm.cabal
index b529dfc..bb3daaf 100644
--- a/pfm.cabal
+++ b/pfm.cabal
@@ -1,46 +1,48 @@
-name: pfm
-version: 0.1.0.0
-synopsis: PFM image parsing library for Debevec's format.
+name: pfm
+version: 0.1.0.0
+synopsis: PFM image parsing library for Debevec's format.
description:
PFM image parsing library for Paul Debevec's format.
.
The website containing an explanation of the format
can be found here <http://www.pauldebevec.com/Research/HDR/PFM/>.
-homepage: https://github.com/ymherklotz/pfm#readme
-license: BSD3
-license-file: LICENSE
-author: Yann Herklotz Grave
-maintainer: ymherklotz@gmail.com
-copyright: 2019 Yann Herklotz Grave
-category: Image
-build-type: Simple
-cabal-version: >=1.10
-extra-source-files: README.md
+homepage: https://github.com/ymherklotz/pfm#readme
+license: BSD3
+license-file: LICENSE
+author: Yann Herklotz Grave
+maintainer: yann [at] yannherklotzgrave [dot] com
+copyright: 2019 Yann Herklotz Grave
+category: Image
+build-type: Simple
+cabal-version: >=1.10
+extra-source-files: README.md
+tested-with: GHC==8.4.3, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4
+ , GHC==7.6.3, GHC==7.4.2, GHC==7.2.2, GHC==7.0.4
source-repository head
type: git
location: git://github.com/ymherklotz/pfm.git
library
- hs-source-dirs: src
- default-language: Haskell2010
- ghc-options: -Wall
- exposed-modules: PFM
- build-depends: attoparsec
- , base >= 4.7 && < 5
- , bytestring
- , text
- , binary
- , data-binary-ieee754
- default-extensions: OverloadedStrings
+ hs-source-dirs: src
+ default-language: Haskell2010
+ ghc-options: -Wall
+ exposed-modules: PFM
+ build-depends: attoparsec
+ , base >= 4.7 && < 5
+ , bytestring
+ , text
+ , binary
+ , data-binary-ieee754
+ default-extensions: OverloadedStrings
executable readpfm
- hs-source-dirs: app
- main-is: Main.hs
- default-language: Haskell2010
- build-depends: base >= 4.7 && < 5
- , pfm
- , text
- , bytestring
- , criterion
- default-extensions: OverloadedStrings
+ hs-source-dirs: app
+ main-is: Main.hs
+ default-language: Haskell2010
+ build-depends: base >= 4.7 && < 5
+ , pfm
+ , text
+ , bytestring
+ , criterion
+ default-extensions: OverloadedStrings