doc/ranger.1: added chmod key bindings to man page
[ranger.git] / setup.py
blob0c83e86f49d44279ea4a4c24db7aa1aeeead181f
1 #!/usr/bin/env python
2 # Copyright (C) 2009, 2010, 2011 Roman Zimbelmann <romanz@lavabit.com>
3 # This software is distributed under the terms of the GNU GPL version 3.
5 import distutils.core
6 import ranger
8 if __name__ == '__main__':
9 distutils.core.setup(
10 name='ranger',
11 description='Vim-like file manager',
12 long_description=ranger.__doc__,
13 version=ranger.__version__,
14 author=ranger.__author__,
15 author_email=ranger.__email__,
16 license=ranger.__license__,
17 url='http://savannah.nongnu.org/projects/ranger',
18 scripts=['scripts/ranger', 'scripts/rifle'],
19 data_files=[('share/man/man1', ['doc/ranger.1', 'doc/rifle.1'])],
20 package_data={'ranger': ['data/*', 'config/rc.conf',
21 'config/rifle.conf']},
22 packages=('ranger',
23 'ranger.api',
24 'ranger.colorschemes',
25 'ranger.container',
26 'ranger.core',
27 'ranger.config',
28 'ranger.ext',
29 'ranger.fsobject',
30 'ranger.gui',
31 'ranger.gui.widgets'))