-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathdataframe.cabal
More file actions
231 lines (218 loc) · 8.49 KB
/
dataframe.cabal
File metadata and controls
231 lines (218 loc) · 8.49 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
cabal-version: 2.4
name: dataframe
version: 0.5.0.1
synopsis: A fast, safe, and intuitive DataFrame library.
description: A fast, safe, and intuitive DataFrame library for exploratory data analysis.
bug-reports: https://github.com/mchav/dataframe/issues
license: MIT
license-file: LICENSE
author: Michael Chavinda
maintainer: mschavinda@gmail.com
copyright: (c) 2024-2025 Michael Chavinda
category: Data
tested-with: GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2
extra-doc-files: CHANGELOG.md README.md
extra-source-files: cbits/process_csv.h
data/titanic/*.csv
tests/data/*.csv
tests/data/*.tsv
tests/data/*.parquet
tests/data/unstable_csv/*.csv
tests/data/unstable_csv/*.tsv
-- tests/data/*.md
-- tests/data/*.bin
-- tests/data/*.json
-- tests/data/*.txt
-- tests/data/*.encrypted
source-repository head
type: git
location: https://github.com/mchav/dataframe
common warnings
-- TODO add more warnings, eventually -Wall
ghc-options:
-Wincomplete-patterns
-Wincomplete-uni-patterns
-Wunused-imports
-Wunused-packages
-Wunused-local-binds
library
import: warnings
default-extensions: Strict
exposed-modules: DataFrame,
DataFrame.Lazy,
DataFrame.Functions,
DataFrame.Synthesis,
DataFrame.Display.Web.Plot,
DataFrame.Internal.Types,
DataFrame.Internal.Expression,
DataFrame.Internal.Interpreter,
DataFrame.Internal.Parsing,
DataFrame.Internal.Column,
DataFrame.Internal.Statistics,
DataFrame.Display.Terminal.PrettyPrint,
DataFrame.Display.Terminal.Colours,
DataFrame.Internal.DataFrame,
DataFrame.Internal.Row,
DataFrame.Internal.Schema,
DataFrame.Errors,
DataFrame.Operations.Core,
DataFrame.Operations.Join,
DataFrame.Operations.Merge,
DataFrame.Operators,
DataFrame.Operations.Permutation,
DataFrame.Operations.Subset,
DataFrame.Operations.Statistics,
DataFrame.Operations.Transformations,
DataFrame.Operations.Typing,
DataFrame.Operations.Aggregation,
DataFrame.Display,
DataFrame.Display.Terminal.Plot,
DataFrame.IO.CSV,
DataFrame.IO.JSON,
DataFrame.IO.Unstable.CSV,
DataFrame.IO.Parquet,
DataFrame.IO.Parquet.Binary,
DataFrame.IO.Parquet.Dictionary,
DataFrame.IO.Parquet.Levels,
DataFrame.IO.Parquet.Thrift,
DataFrame.IO.Parquet.ColumnStatistics,
DataFrame.IO.Parquet.Compression,
DataFrame.IO.Parquet.Encoding,
DataFrame.IO.Parquet.Page,
DataFrame.IO.Parquet.Time,
DataFrame.IO.Parquet.Types,
DataFrame.Lazy.IO.CSV,
DataFrame.Lazy.Internal.DataFrame,
DataFrame.Monad,
DataFrame.DecisionTree,
DataFrame.Typed.Types,
DataFrame.Typed.Schema,
DataFrame.Typed.Freeze,
DataFrame.Typed.Access,
DataFrame.Typed.Operations,
DataFrame.Typed.Join,
DataFrame.Typed.Aggregate,
DataFrame.Typed.TH,
DataFrame.Typed.Expr,
DataFrame.Typed
build-depends: base >= 4 && <5,
aeson >= 0.11.0.0 && < 3,
array >= 0.5.4.0 && < 0.6,
attoparsec >= 0.12 && < 0.15,
bytestring >= 0.11 && < 0.13,
bytestring-lexing >= 0.5 && < 0.6,
cassava >= 0.1 && < 1,
containers >= 0.6.7 && < 0.9,
directory >= 1.3.0.0 && < 2,
granite ^>= 0.4,
hashable >= 1.2 && < 2,
process ^>= 1.6,
snappy-hs ^>= 0.1,
random >= 1.2 && < 2,
regex-tdfa >= 1.3.0 && < 2,
scientific >=0.3.1 && <0.4,
template-haskell >= 2.0 && < 3,
text >= 2.0 && < 3,
these >= 1.1 && < 2,
time >= 1.12 && < 2,
unordered-containers >= 0.1 && < 1,
vector ^>= 0.13,
vector-algorithms ^>= 0.9,
zlib >= 0.5 && < 1,
zstd >= 0.1.2.0 && < 0.2,
mmap >= 0.5.8 && < 0.6,
parallel >= 3.2.2.0 && < 5,
filepath >= 1.4 && < 2,
Glob >= 0.10 && < 1,
hs-source-dirs: src
c-sources: cbits/process_csv.c
include-dirs: cbits
includes: process_csv.h
install-includes: process_csv.h
default-language: Haskell2010
executable dataframe-benchmark-example
import: warnings
main-is: Benchmark.hs
build-depends: base >= 4 && < 5,
dataframe >= 0.5 && < 1,
random >= 1 && < 2,
time >= 1.12 && < 2,
vector ^>= 0.13,
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -rtsopts -threaded -with-rtsopts=-N
executable synthesis
import: warnings
main-is: Synthesis.hs
build-depends: base >= 4 && < 5,
dataframe >= 0.5 && < 1,
random >= 1 && < 2,
text >= 2.0 && < 3
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -rtsopts -threaded -with-rtsopts=-N
executable dataframe
import: warnings
main-is: Main.hs
build-depends: base >= 4 && < 5,
directory >= 1.3.0.0 && < 2,
filepath >= 1.4 && < 2,
process >= 1.6 && < 2,
time >= 1.12 && < 2
if !os(windows)
build-depends: unix >= 2 && < 3
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -rtsopts -threaded -with-rtsopts=-N
benchmark dataframe-benchmark
import: warnings
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: benchmark
build-depends: base >= 4 && < 5,
criterion >= 1 && < 2,
process >= 1.6 && < 2,
dataframe >= 0.5 && < 1
default-language: Haskell2010
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
test-suite tests
import: warnings
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Assertions,
Functions,
GenDataFrame,
Operations.Aggregations,
Operations.Apply,
Operations.Core,
Operations.Derive,
Operations.Filter,
Operations.GroupBy,
Operations.InsertColumn,
Operations.Join,
Operations.Merge,
Operations.ReadCsv,
Operations.Shuffle,
Operations.Sort,
Operations.Subset,
Operations.Statistics,
Operations.Take,
Parquet,
Monad
build-depends: base >= 4 && < 5,
dataframe >= 0.5 && < 1,
directory >= 1.3.0.0 && < 2,
HUnit ^>= 1.6,
QuickCheck >= 2 && < 3,
random-shuffle >= 0.0.4 && < 1,
random >= 1 && < 2,
text >= 2.0 && < 3,
these >= 1.1 && < 2,
time >= 1.12 && < 2,
vector ^>= 0.13,
containers >= 0.6.7 && < 0.9
hs-source-dirs: tests
default-language: Haskell2010