cabal-version: 2.0 -- Initial package description 'yahoo-prices.cabal' generated by 'cabal -- init'. For further documentation, see -- http://haskell.org/cabal/users-guide/ name: yahoo-prices version: 0.1.0.2 synopsis: A wrapper around Yahoo API for downloading market data. description: It's a simple wrapper around Yahoo Finance API, that allows to fetch market data for various financial instruments from Yahoo website. . The same data can be viewed in "Historic Data" section. An example for the `SPY` ETF can be found here: https://finance.yahoo.com/quote/SPY/history?p=SPY. bug-reports: https://github.com/bratfizyk/yahoo-finance/issues license: MIT license-file: LICENSE author: Alojzy Leszcz maintainer: alojzy.leszcz@gmail.com category: Web build-type: Simple extra-source-files: CHANGELOG.md Source-repository head type: git location: https://github.com/bratfizyk/yahoo-finance library yahoo-prices-utils exposed-modules: Web.Data.Yahoo.Utils, Web.Data.Yahoo.Request build-depends: base, time hs-source-dirs: src/utils default-language: Haskell2010 library exposed-modules: Web.Data.Yahoo.API, Web.Data.Yahoo.Response build-depends: base >= 4.13 && < 4.15, yahoo-prices-utils, bytestring >= 0.10.10 && < 0.11, cassava >= 0.5.2 && < 0.6, lens >= 4.18.1 && < 5.1, time >= 1.9.3 && < 1.10, vector >= 0.12.1 && < 0.13, wreq >= 0.5.3 && < 0.6 hs-source-dirs: src/lib default-language: Haskell2010 test-suite yahoo-prices-test default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Tests.hs other-modules: Gen build-depends: base, bytestring, hspec, QuickCheck, time, yahoo-prices, yahoo-prices-utils