Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 524
d-d Avatar asked May 15 '19 07:05

d-d


People also ask

What is manifest in in Python?

A MANIFEST.in file consists of commands, one per line, instructing setuptools to add or remove some set of files from the sdist.

Where do you put comments in Python?

Comment Syntax Comments in Python begin with a hash mark ( # ) and whitespace character and continue to the end of the line.

How do you write comments in Python?

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?

What Are the Different Types of Comments in Python? There are three types of comments: single-line, multi-line, and docstring comments.


1 Answers

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

like image 187
phd Avatar answered Nov 08 '22 11:11

phd