about summary refs log tree commit diff stats
path: root/apps/random.subx
Commit message (Expand)AuthorAgeFilesLines
* 6089Kartik Agaram2020-03-061-2/+2
* 5661Kartik Agaram2019-09-151-1/+1
* 5592 - switch register names to lowercaseKartik Agaram2019-08-261-14/+14
* 5522 - example app: random number streamKartik Agaram2019-08-201-0/+62
t@lavabit.com> 2010-09-11 22:56:00 +0200 Makefile, setup.py: Fixed `make doc`' href='/akspecs/ranger/commit/setup.py?h=v1.9.0&id=27eec7c6b53303acfd7713f7cc696ea50894a6b1'>27eec7c6 ^
d1a1173d ^






















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
                     
                                                                       
                                                                        



                     
                          






















                                                            
#!/usr/bin/env python
# Copyright (C) 2009, 2010, 2011  Roman Zimbelmann <romanz@lavabit.com>
# This software is distributed under the terms of the GNU GPL version 3.

import distutils.core
import ranger

if __name__ == '__main__':
    distutils.core.setup(
        name='ranger',
        description='Vim-like file manager',
        long_description=ranger.__doc__,
        version=ranger.__version__,
        author=ranger.__author__,
        author_email=ranger.__email__,
        license=ranger.__license__,
        url='http://savannah.nongnu.org/projects/ranger',
        scripts=['scripts/ranger', 'scripts/rifle'],
        data_files=[('share/man/man1', ['doc/ranger.1'])],
        package_data={'ranger': ['data/*', 'config/rc.conf',
            'config/rifle.conf']},
        packages=('ranger',
                  'ranger.api',
                  'ranger.colorschemes',
                  'ranger.container',
                  'ranger.core',
                  'ranger.config',
                  'ranger.ext',
                  'ranger.fsobject',
                  'ranger.gui',
                  'ranger.gui.widgets'))