Is there any way to comment some line in the manifest file used by Python? If so, what's the syntax?
A MANIFEST.in file consists of commands, one per line, instructing setuptools to add or remove some set of files from the sdist.
Comment Syntax Comments in Python begin with a hash mark ( # ) and whitespace character and continue to the end of the line.
A comment in Python starts with the hash character, # , and extends to the end of the physical line. A hash character within a string value is not seen as a comment, though. To be precise, a comment can be written in three ways - entirely on its own line, next to a statement of code, and as a multi-line comment block.
What Are the Different Types of Comments in Python? There are three types of comments: single-line, multi-line, and docstring comments.
Comments start with the hash character: #
; a comment lasts to the end of the line. See an example at PyPA sample project.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With