packages feed

gemini-exports-0.1.0.0: gemini-exports.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack

name:           gemini-exports
version:        0.1.0.0
synopsis:       Generate CSV Exports of Your Gemini Trades, Transfers, & Earn Transactions
description:    @gemini-exports@ is a CLI program that queries the Gemini Exchange's API
                for your Trade History, Transfer History, & Earn History and exports all
                fetched data to a CSV file.
                .
                You can install @gemini-exports@ with Stack: @stack install --resolver
                nightly gemii-exports@. Then run the following to print out your complete
                history:
                .
                @
                $ gemini-exports -k \<API_KEY\> -s \<API_SECRET\>
                time,base-asset,quote-asset,type,description,price,quantity,total,fee,fee-currency,trade-id
                2022-04-20 04:20:00,GUSD,USD,Buy,,1.0,9001.0,9001.0,0.0,USD,900142424242
                @
                .
                See @gemini-exports --help@ for additional options, configuration file
                details, etc.
category:       Web, Finance, Console
homepage:       https://github.com/prikhi/gemini-exports#readme
bug-reports:    https://github.com/prikhi/gemini-exports/issues
author:         Pavan Rikhi
maintainer:     pavan.rikhi@gmail.com
copyright:      2022 Pavan Rikhi
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/prikhi/gemini-exports

library
  exposed-modules:
      Console.Gemini.Exports.Csv
      Console.Gemini.Exports.Main
      Web.Gemini
  other-modules:
      Paths_gemini_exports
  hs-source-dirs:
      src
  default-extensions:
      DeriveGeneric
      LambdaCase
      NamedFieldPuns
      OverloadedStrings
      TupleSections
      TypeApplications
      TypeOperators
      ViewPatterns
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -O2 -Wunused-packages
  build-depends:
      aeson <3
    , base >=4.7 && <5
    , base64 <1
    , bytestring <1
    , cassava <1
    , cmdargs >=0.10 && <1
    , containers <1
    , cryptonite <1
    , directory <2
    , http-client <1
    , http-types <1
    , mtl <3
    , raw-strings-qq <2
    , req <4
    , safe-exceptions <1
    , scientific <1
    , text <3
    , time <2
    , xdg-basedir <1
    , yaml <1
  default-language: Haskell2010

executable gemini-exports
  main-is: Main.hs
  other-modules:
      Paths_gemini_exports
  hs-source-dirs:
      app
  default-extensions:
      DeriveGeneric
      LambdaCase
      NamedFieldPuns
      OverloadedStrings
      TupleSections
      TypeApplications
      TypeOperators
      ViewPatterns
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts "-N -T"
  build-depends:
      base >=4.7 && <5
    , gemini-exports
  default-language: Haskell2010

test-suite gemini-exports-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_gemini_exports
  hs-source-dirs:
      tests
  default-extensions:
      DeriveGeneric
      LambdaCase
      NamedFieldPuns
      OverloadedStrings
      TupleSections
      TypeApplications
      TypeOperators
      ViewPatterns
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts "-N -T"
  build-depends:
      base >=4.7 && <5
    , gemini-exports
    , hedgehog
    , tasty
    , tasty-hedgehog >=1.2
    , tasty-hunit
  default-language: Haskell2010