-
Notifications
You must be signed in to change notification settings - Fork 2
/
gtfs.cabal
36 lines (35 loc) · 1.17 KB
/
gtfs.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
name: gtfs
version: 0.1
license: BSD3
license-file: LICENSE
synopsis: The General Transit Feed Specification format
category: Data
author: Keegan McAllister <[email protected]>
maintainer: Keegan McAllister <[email protected]>
build-type: Simple
cabal-version: >=1.2
description:
This module provides data types and parsers for the General Transit Feed
Specification, described at
<http://code.google.com/transit/spec/transit_feed_specification.html>.
.
GTFS is used by transit agencies to provide schedules, geographic
information, etc. to Google Maps and other Google applications. Many data
sets are available online, often with few restrictions, so the format is
useful to third-party developers.
library
exposed-modules:
Data.GTFS.Types
, Data.GTFS.Parse
ghc-options: -Wall
build-depends:
base >= 3 && < 5
, filepath >= 1.1
, directory >= 1.0
, split >= 0.1
, cassava >= 0.5
, bytestring >= 0.10
, vector >= 0.12
, safe >= 0.3
, unordered-containers >= 0.2
, network-uri >= 2.6