-- Initial lsql-csv.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: lsql-csv -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- https://wiki.haskell.org/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.1.0.5 -- A short (one-line) description of the package. synopsis: A tool for CSV files data querying from the shell with short queries. -- A longer description of the package. description: lsql-csv is a tool for small CSV file data querying from a shell with short queries. It makes it possible to work with small CSV files like with a read-only relational databases. The tool implements a new language LSQL similar to SQL, specifically designed for working with CSV files in a shell. -- URL for the project homepage or repository. homepage: https://github.com/stastnypremysl/lsql-csv/ bug-reports: https://github.com/stastnypremysl/lsql-csv/issues -- The license under which the package is released. license: GPL-3 license-file: LICENSE author: Přemysl Šťastný maintainer: p-w@stty.cz category: Text build-type: Simple extra-source-files: README.md CHANGELOG.md cabal-version: >=1.10 library build-depends: base >=4.9 && <4.20, text >=1.2 && <2.2, parsec >=3.1 && <3.2, Glob >=0.10 && <0.11, containers >=0.5 && <0.8 default-language: Haskell2010 hs-source-dirs: src ghc-options: -O3 exposed-modules: Lsql.Csv.Main Lsql.Csv.Core.BlockOps Lsql.Csv.Core.Evaluator Lsql.Csv.Core.Functions Lsql.Csv.Core.Symbols Lsql.Csv.Core.Tables Lsql.Csv.Lang.Args Lsql.Csv.Lang.BlockChain Lsql.Csv.Lang.BlockSeparator Lsql.Csv.Lang.From.Block Lsql.Csv.Lang.From.CsvParser Lsql.Csv.Lang.Options Lsql.Csv.Lang.Selector Lsql.Csv.Utils.BracketExpansion Lsql.Csv.Utils.CsvGenerator executable lsql-csv -- .hs or .lhs file containing the Main module. main-is: Main.hs ghc-options: -O3 -- Modules included in this executable, other than Main. -- other-modules: -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: lsql-csv, base >=4.9 && <4.20 -- Directories containing source files. hs-source-dirs: main -- Base language which the package is written in. default-language: Haskell2010 source-repository head type: git location: https://github.com/stastnypremysl/lsql-csv source-repository this type: git location: https://github.com/stastnypremysl/lsql-csv tag: v0.1.0.5