summary refs log blame commit diff stats
path: root/setup.py
blob: 0ed861eb05be67d970df3d7320b4282906f99ebd (plain) (tree)
1
2
3
4
5
6
7
8
9
                     

                                                                 
 
                                                                  
 

             
 




                                    

             
 
                       
                                                                     
                                                          
 
 



                                                       



                                    


                         





                                            
                                       
 
                 

                                                   
          
                    












                                       



                                                                                         
          

                       

                                 


                                    







                                  
                             



                                 



                          
#!/usr/bin/env python
# This file is part of ranger, the console file manager.
# License: GNU GPL version 3, see the file "AUTHORS" for details.

from __future__ import (absolute_import, division, print_function)

import os
import shutil

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

import ranger


def findall(directory):
    return [os.path.join(directory, f) for f in os.listdir(directory)
            if os.path.isfile(os.path.join(directory, f))]


def script(src_path, name):
    if not os.path.exists('build/scripts_tmp'):
        os.makedirs('build/scripts_tmp')
    dest_path = os.path.join('build/scripts_tmp', name)
    shutil.copy(src_path, dest_path)
    return dest_path


def main():
    setup(
        name='ranger-fm',
        description='Vim-like file manager',
        long_description=ranger.__doc__,
        version=ranger.__version__,
        author=ranger.__author__,
        author_email=ranger.__email__,
        license=ranger.__license__,
        url='http://ranger.nongnu.org',

        scripts=[
            script('ranger.py', 'ranger'),
            script('ranger/ext/rifle.py', 'rifle'),
        ],
        data_files=[
            ('share/applications', [
                'doc/ranger.desktop',
            ]),
            ('share/man/man1', [
                'doc/ranger.1',
                'doc/rifle.1',
            ]),
            ('share/doc/ranger', [
                'doc/colorschemes.txt',
                'CHANGELOG.md',
                'HACKING.md',
                'README.md',
            ]),
            ('share/doc/ranger/config', findall('doc/config')),
            ('share/doc/ranger/config/colorschemes', findall('doc/config/colorschemes')),
            ('share/doc/ranger/examples', findall('examples')),
            ('share/doc/ranger/tools', findall('doc/tools')),
        ],
        package_data={
            'ranger': [
                'data/*',
                'config/rc.conf',
                'config/rifle.conf',
            ],
        },
        packages=(
            'ranger',
            'ranger.api',
            'ranger.colorschemes',
            'ranger.config',
            'ranger.container',
            'ranger.core',
            'ranger.ext',
            'ranger.ext.vcs',
            'ranger.gui',
            'ranger.gui.widgets',
        ),
    )


if __name__ == '__main__':
    main()