-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsql-csv.cabal
78 lines (59 loc) · 2.17 KB
/
lsql-csv.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
cabal-version: >=1.10
name: lsql-csv
version: 0.1.0.6
-- 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. LSQL aims to be a more lapidary language than SQL. Its design purpose is to enable its user to quickly write simple queries directly to the terminal.
homepage: https://github.com/stastnypremysl/lsql-csv/
bug-reports: https://github.com/stastnypremysl/lsql-csv/issues
license: GPL-3
license-file: LICENSE
author: Přemysl Šťastný
maintainer: [email protected]
category: Text
build-type: Simple
extra-source-files: README.md CHANGELOG.md
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
main-is: Main.hs
build-depends:
lsql-csv,
base >=4.9 && <4.20
hs-source-dirs: main
default-language: Haskell2010
ghc-options:
-O3
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.6