How to cabalize haskell packages with multiple authors

cabal, haskell

Solution

I don't know if this is the best practice, but I just use a comma separated list of names.

Author:              John Doe, Tikhon Jelvis

You could also include email addresses:

Author:              John Doe <john.doe@example.com>, Tikhon Jelvis <tikhon@berkeley.edu>

Problem

All the tutorials and examples of how to cabalize a Haskell package assume the package has a single author (as well as a single maintainer). How to I properly credit multiple Authors in a .cabal file?

Original source