|
| 1 | +-- Initial LearningHaskellDataAnalysis.cabal generated by cabal init. For |
| 2 | +-- further documentation, see http://haskell.org/cabal/users-guide/ |
| 3 | + |
| 4 | +-- The name of the package. |
| 5 | +name: LearningHaskellDataAnalysis |
| 6 | + |
| 7 | +-- The package version. See the Haskell package versioning policy (PVP) |
| 8 | +-- for standards guiding when and how versions should be incremented. |
| 9 | +-- http://www.haskell.org/haskellwiki/Package_versioning_policy |
| 10 | +-- PVP summary: +-+------- breaking API changes |
| 11 | +-- | | +----- non-breaking API additions |
| 12 | +-- | | | +--- code changes with no API change |
| 13 | +version: 0.1.0.0 |
| 14 | + |
| 15 | +-- A short (one-line) description of the package. |
| 16 | +-- synopsis: |
| 17 | + |
| 18 | +-- A longer description of the package. |
| 19 | +-- description: |
| 20 | + |
| 21 | +-- URL for the project homepage or repository. |
| 22 | +homepage: https://github.com/tomi77/LearningHaskellDataAnalysis |
| 23 | + |
| 24 | +-- The license under which the package is released. |
| 25 | +-- license: |
| 26 | + |
| 27 | +-- The file containing the license text. |
| 28 | +license-file: LICENSE |
| 29 | + |
| 30 | +-- The package author(s). |
| 31 | +author: Tomasz Jakub Rup |
| 32 | + |
| 33 | +-- An email address to which users can send suggestions, bug reports, and |
| 34 | +-- patches. |
| 35 | +maintainer: tomasz.rup@gmail.com |
| 36 | + |
| 37 | +-- A copyright notice. |
| 38 | +-- copyright: |
| 39 | + |
| 40 | +-- category: |
| 41 | + |
| 42 | +build-type: Simple |
| 43 | + |
| 44 | +-- Extra files to be distributed with the package, such as examples or a |
| 45 | +-- README. |
| 46 | +-- extra-source-files: |
| 47 | + |
| 48 | +-- Constraint on the version of Cabal needed to build this package. |
| 49 | +cabal-version: >=1.10 |
| 50 | + |
| 51 | + |
| 52 | +library |
| 53 | + build-depends: base >=4.8 && <4.9 |
| 54 | + hs-source-dirs: src |
| 55 | + exposed-modules: LearningHaskellDataAnalysis01 LearningHaskellDataAnalysis02 |
| 56 | + |
| 57 | +executable median |
| 58 | + -- .hs or .lhs file containing the Main module. |
| 59 | + main-is: median.hs |
| 60 | + |
| 61 | + -- Modules included in this executable, other than Main. |
| 62 | + other-modules: LearningHaskellDataAnalysis01 |
| 63 | + |
| 64 | + -- LANGUAGE extensions used by modules in this package. |
| 65 | + -- other-extensions: |
| 66 | + |
| 67 | + -- Other library packages from which modules are imported. |
| 68 | + build-depends: base >=4.8 && <4.9 |
| 69 | + |
| 70 | + -- Directories containing source files. |
| 71 | + hs-source-dirs: src |
| 72 | + |
| 73 | + -- Base language which the package is written in. |
| 74 | + default-language: Haskell2010 |
0 commit comments