Reputation: 3135
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?
Upvotes: 7
Views: 578
Reputation: 68152
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 <[email protected]>, Tikhon Jelvis <[email protected]>
Upvotes: 8