This file is indexed.

/usr/share/paster_templates/basic_package/setup.py_tmpl is in python-pastescript 1.7.5-3build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
import sys, os

version = {{repr(version or "0.0")}}

setup(name={{repr(project)}},
      version=version,
      description="{{description or ''}}",
      long_description="""\
{{long_description or ''}}""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords={{repr(keywords or '')}},
      author={{repr(author or '')}},
      author_email={{repr(author_email or '')}},
      url={{repr(url or '')}},
      license={{repr(license_name or '')}},
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe={{repr(bool(zip_safe or False))}},
      install_requires=[
          # -*- Extra requirements: -*-
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      )