Closed

Description
Originally reported by: mklein0 (Bitbucket: mklein0, GitHub: mklein0)
Could an option be added to package builds to disable the use of normalized version identifiers in the final package file name?
Under previous versions of setup tools a version identifier of 20140510.003458
would generate a package name of:
dated_release-20140510.003458-cp27-none-macosx_10_9_intel.whl
After setuptools 8:
dated_release-20140510.3458-cp27-none-macosx_10_9_intel.whl
My primary concern is for older installation tool/devpy versions, the package version matching will fail if I start using the new normalized package names. And I do not want to have to test it.
Aesthetics is another aspect as in this case, the version identifier is actually an encoding of an ISO8601 timestamp.:
date -u +'%Y%m%d.%H%M%S'
This request is derived from issue #302