ringo/ringo-core/ringo-core.cabal

58 lines
2.2 KiB
Plaintext
Raw Normal View History

name: ringo-core
2015-12-09 17:11:57 +05:30
version: 0.1.0.0
synopsis: OLTP to OLAP schema transformer for Postgres
description: Library to transform Postgres 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
2016-05-05 01:06:31 +05:30
license-file: LICENSE
2015-12-09 17:11:57 +05:30
author: Abhinav Sarkar
maintainer: abhinav@abhinavsarkar.net
2017-11-16 21:04:32 +05:30
copyright: 2015-2017 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.Generator.Populate.Fact.CountDistinct,
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,
base-compat >=0.6 && <1.0,
2016-01-01 14:31:46 +05:30
raw-strings-qq >=1.0 && <1.2,
2017-11-16 19:38:56 +05:30
hssqlppp >=0.6 && <0.7
2016-05-05 01:06:31 +05:30
ghc-options: -Wall -fwarn-incomplete-uni-patterns -fno-warn-unused-do-bind
-fno-warn-orphans -funbox-strict-fields
2015-12-09 17:11:57 +05:30
default-language: Haskell2010
test-suite ringo-core-test
2015-12-09 17:11:57 +05:30
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-core
, 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