This file is indexed.

/usr/lib/pypy/dist-packages/bdist_nsi-0.1.5.egg-info is in pypy-bdist-nsi 0.1.5-1.

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
Metadata-Version: 1.1
Name: bdist_nsi
Version: 0.1.5
Summary: Create NSIS windows installers for Python modules.
Home-page: http://bdist-nsi.sourceforge.net/
Author: Amorilia
Author-email: amorilia@users.sourceforge.net
License: BSD
Description: bdist_nsi
        =========
        
        The bdist_nsi module extends Python's distutils module with a bdist_nsi 
        setup command to create binary Windows installers for Python modules, 
        based on NSIS. Thereby, bdist_nsi brings all the features of NSIS to 
        Windows installers for Python modules, such as silent install, modern 
        user interface, and internationalization. 
        
        In action
        ---------
        
        Take a look at the `screenshots <http://sourceforge.net/project/screenshots.php?group_id=139858>`_.
        
        What you need
        -------------
        
        Besides Python and the bdist_nsi module, you will need `NSIS <http://nsis.sourceforge.net/>`_. It can be run under windows and linux (see NSIS forum for instructions).
        
        Installation
        ------------
        
        The latest version can always be downloaded from https://sourceforge.net/projects/bdist-nsi/files.
        
        To install from source, simply run::
        
            python setup.py install
        
        Usage
        -----
        
        Add ``bdist_nsi`` option to your setup.py file.
        
        In your projects setup.py::
        
            try:
                from bdist_nsi import bdist_nsi
            except ImportError:
                pass
        
            nsis_options = {} # your nsis options
            setup(
                name='your application name', 
                version='0.0.x',
                author='your name',
                author_email='your email',
                url='http://yourdomain.com/',
                options={'bdist_nsi': nsis_options, }, 
                license='your license',) # your setup options
        
        You can create installer ``python setup.py bdist_nsi`` command.
        
        If the makensis executable is not installed in one of the usual
        locations (``/usr/bin``, ``C:\Program Files\NSIS``, or
        ``C:\Program Files (x86)\NSIS``), then you can specify the
        NSIS folder with the *--nsis-dir* option, or just add *-k* to have a look
        at the temporary generated files.
        
        Development
        -----------
        
        Development happens at github, http://github.com/amorilia/bdist_nsi/. Fork at will!
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Software Development :: Code Generators