classification
Title: add a new command called "check" into Distutils
Type: feature request Stage:
Components: Versions: Python 3.1, Python 2.7
process
Status: closed Resolution:
Dependencies: change sdist and register command so they use check
View: 6041
Superseder:
Assigned To: tarek Nosy List: tarek (1)
Priority: Keywords

Created on 2009-04-09 23:15 by tarek, last changed 2009-05-16 16:49 by tarek.

Messages (3)
msg85835 - (view) Author: Tarek Ziadé (tarek) Date: 2009-04-09 23:15
Right now, both register and sdist commands are implementing a
check_metadata function to check that the metadata are complete enough.

check will refactor this and also add a test to validate that the 
long_description is/is not reST compliant (if asked *and* if docutils is
present)

of course distutils will not introduce a hard dependency on docutils and
both register and sdist wil continue to work the same way (but use check
underneath)
msg85864 - (view) Author: Tarek Ziadé (tarek) Date: 2009-04-11 15:17
'check' added in r71473 and r71473

Now working on sdist and register so they use it.
msg87903 - (view) Author: Tarek Ziadé (tarek) Date: 2009-05-16 16:49
closing (created a new ticket #6041 for sdist and register inclusion)
History
Date User Action Args
2009-05-16 17:01:06tareklinkissue6041 dependencies
2009-05-16 16:49:50tareksetdependencies: + change sdist and register command so they use check
2009-05-16 16:49:31tareksetstatus: open -> closed

messages: + msg87903
2009-04-11 15:17:46tareksetmessages: + msg85864
2009-04-09 23:15:35tarekcreate