ringo/ringo.cabal

80 lines
3.3 KiB
Plaintext
Raw Normal View History

2015-12-09 17:11:57 +05:30
name: ringo
version: 0.1.0.0
synopsis: OLTP to OLAP schema transformer
description: Tool to transform OLTP schemas to OLAP star schemas automatically
2016-04-26 01:17:14 +05:30
homepage: http://github.com/abhin4v/ringo
2015-12-09 17:11:57 +05:30
license: MIT
license-file: LICENSE
author: Abhinav Sarkar
maintainer: abhinav@abhinavsarkar.net
2016-04-26 01:13:07 +05:30
copyright: 2015-2016 Quintype Inc, Nilenso Software LLP, Abhinav Sarkar
2015-12-09 17:11:57 +05:30
category: SQL
build-type: Simple
-- extra-source-files:
2015-12-18 02:37:17 +05:30
cabal-version: >=1.18
2015-12-09 17:11:57 +05:30
library
hs-source-dirs: src
exposed-modules: Ringo,
2015-12-18 02:37:17 +05:30
Ringo.Types
other-modules: Ringo.Extractor,
Ringo.Generator,
Ringo.Validator,
2015-12-18 02:37:17 +05:30
Ringo.Extractor.Internal,
Ringo.Generator.Internal,
Ringo.Generator.Sql,
Ringo.Generator.Create,
Ringo.Generator.Populate.Dimension,
Ringo.Generator.Populate.Fact,
Ringo.Types.Internal,
Ringo.Utils
build-depends: base >=4.7 && <5,
text >=1.2 && <1.3,
containers >=0.5 && <0.6,
mtl >=2.1 && <2.3,
2016-01-01 14:31:46 +05:30
raw-strings-qq >=1.0 && <1.2,
2016-04-24 16:47:53 +05:30
hssqlppp ==0.6.0
ghc-options: -Wall -Werror -fwarn-incomplete-uni-patterns -fno-warn-unused-do-bind
-fno-warn-orphans -funbox-strict-fields -O2
2015-12-09 17:11:57 +05:30
default-language: Haskell2010
executable ringo
hs-source-dirs: app
other-modules: Ringo.ArgParser,
Ringo.InputParser,
Distribution.CurrentPackageDescription
2015-12-09 17:11:57 +05:30
main-is: Main.hs
2015-12-29 15:19:17 +05:30
build-depends: base >=4.7 && <5,
text >=1.2 && <1.3,
bytestring >=0.10 && <0.11,
containers >=0.5 && <0.6,
optparse-applicative >=0.11 && <0.13,
2015-12-29 15:19:17 +05:30
yaml >=0.8.11 && <0.9,
vector >=0.10 && <0.12,
2015-12-29 15:19:17 +05:30
directory >=1.2 && <1.3,
filepath >=1.3 && <1.5,
aeson >=0.8 && <0.12,
Cabal >=1.18 && <1.23,
template-haskell >=2.9 && <2.11,
ringo
ghc-options: -Wall -Werror -fwarn-incomplete-uni-patterns -fno-warn-unused-do-bind
-fno-warn-orphans -funbox-strict-fields -O2
2015-12-09 17:11:57 +05:30
default-language: Haskell2010
test-suite ringo-test
type: exitcode-stdio-1.0
2016-01-01 20:57:54 +05:30
hs-source-dirs: test, src
main-is: doctests.hs
if impl(ghc >= 7.10)
build-depends: base
, ringo
, pretty-show >=1.6 && <1.7
, doctest >=0.9 && <0.12
else
buildable: False
2015-12-09 17:11:57 +05:30
default-language: Haskell2010
source-repository head
type: git
2016-04-26 01:17:14 +05:30
location: https://github.com/abhin4v/ringo