Search code examples
pythonmanifestdistutils

Comments in Python MANIFEST.in


Is there any way to comment some line in the manifest file used by Python? If so, what's the syntax?


Solution

  • Comments start with the hash character: #; a comment lasts to the end of the line. See an example at PyPA sample project.