This file is indexed.

/usr/share/pyshared/z3c/autoinclude/tests/enolp.ppa.foo/setup.py is in python-z3c.autoinclude 0.3.5-0ubuntu1.

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
27
28
29
30
31
32
from setuptools import setup, find_packages

version = '0.1'

setup(name='enolp.ppa.foo',
      version=version,
      description="",
      long_description="""\
""",
      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      classifiers=[
        "Framework :: Zope3",
        "Programming Language :: Python",
        ],
      keywords='',
      author='',
      author_email='',
      url='',
      license="''",
      packages=find_packages(exclude=['ez_setup']),
      namespace_packages=['enolp', 'enolp.ppa'],
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          'setuptools',
	  'TestDirective',
          # -*- Extra requirements: -*-
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      )