cabal-version: 3.0 -- The name of the package. name: word-note-sox -- The package version. version: 0.1.0.0 -- A short (one-line) description of the package. synopsis: SoX for algorithmic composition with groups of notes liken to words -- A longer description of the package. description: A basic SoX functionality for the new project related to music and algorithmic composition. Is rewritten from algorithmic-composition-basic functionality and some other ones. -- URL for the project homepage or repository. homepage: https://hackage.haskell.org/package/word-note-sox bug-reports: https://github.com/Oleksandr-Zhabenko/word-note-sox/issues -- The license under which the package is released. license: MIT -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Oleksandr Zhabenko -- An email address to which users can send suggestions, bug reports, and patches. maintainer: oleksandr.zhabenko@yahoo.com -- A copyright notice. copyright: Oleksandr Zhabenko category: Sound, Language build-type: Simple -- Extra doc files to be distributed with the package, such as a CHANGELOG or a README. extra-doc-files: CHANGELOG.md, README.md -- Extra source files to be distributed with the package, such as examples, or a tutorial module. -- extra-source-files: common warnings ghc-options: -Wall library -- Import common warning flags. import: warnings -- Modules exported by the library. exposed-modules: Composition.Sound.SoX -- Modules included in this library but not exported. -- other-modules: -- LANGUAGE extensions used by modules in this package. other-extensions: NoImplicitPrelude, OverloadedStrings, OverloadedLists -- Other library packages from which modules are imported. build-depends: base >=4.13 && < 5, typed-process >= 0.2.6.1 && <1, bytestring >= 0.10.8.0 && <1, directory >=1.3.4.0 && <2, end-of-exe ==0.1.2.0, monoid-insertleft ==0.1.0.1 -- Directories containing source files. hs-source-dirs: . -- Base language which the package is written in. default-language: Haskell2010