ringo/ringo/ringo.cabal

43 lines
1.9 KiB
Plaintext
Raw Normal View History

name: ringo
2015-12-09 17:11:57 +05:30
version: 0.1.0.0
synopsis: OLTP to OLAP schema transformer for Postgres
description: Tool 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
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
executable ringo
hs-source-dirs: src
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,
base-compat >=0.6 && <1.0,
2017-11-16 19:38:56 +05:30
optparse-applicative >=0.11 && <0.15,
2015-12-29 15:19:17 +05:30
yaml >=0.8.11 && <0.9,
2017-05-21 13:14:01 +05:30
vector >=0.10 && <0.13,
2017-05-19 23:46:52 +05:30
directory >=1.2 && <1.4,
2015-12-29 15:19:17 +05:30
filepath >=1.3 && <1.5,
2017-11-16 19:38:56 +05:30
aeson >=0.8 && <1.3,
Cabal >=1.18 && <2.1,
template-haskell >=2.9 && <2.13,
ringo-core
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 -O2
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