This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jambonrose
Recipients dstufft, eric.araujo, jambonrose
Date 2017-07-28.20:51:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501275107.85.0.857178760457.issue31073@psf.upfronthosting.co.za>
In-reply-to
Content
The new warehouse uses the author_email field to create a mailto link. Donald Stufft recommended leaving out the author_email field while still specifying the author field should a maintainer wish to have their name associated without their email.

Conversation with Donald:
https://github.com/pypa/warehouse/issues/2155

Unfortunately, specifying author but not author_email causes the `setup.py check` command to throw an error. "check: missing meta-data: if 'author' supplied, 'author_email' must be supplied too"

I would like to remove that check from being performed given the recommended fix for warehouse. The logic that performs this check is currently in the distutils check command.

https://github.com/python/cpython/blob/master/Lib/distutils/command/check.py

Additionally, AFAICT, it is impossible to disable the metadata check in distutils. I would also like to add a negative option to allow the metadata check to be skipped.
History
Date User Action Args
2017-07-28 20:51:47jambonrosesetrecipients: + jambonrose, eric.araujo, dstufft
2017-07-28 20:51:47jambonrosesetmessageid: <1501275107.85.0.857178760457.issue31073@psf.upfronthosting.co.za>
2017-07-28 20:51:47jambonroselinkissue31073 messages
2017-07-28 20:51:47jambonrosecreate