Jacques Carette
Jacques Carette

Reputation: 3135

How to cabalize haskell packages with multiple authors

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

Answers (1)

Tikhon Jelvis
Tikhon Jelvis

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

Related Questions