Makefile: Fixed "PHONY" stuff
[ranger.git] / setup.py
blobec7827948674e3050bb2b68a87f4e33344603805
1 #!/usr/bin/env python
2 # Copyright (C) 2009, 2010, 2011 Roman Zimbelmann <romanz@lavabit.com>
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 import distutils.core
18 import ranger
20 if __name__ == '__main__':
21 distutils.core.setup(
22 name='ranger',
23 description='Vim-like file manager',
24 long_description=ranger.__doc__,
25 version=ranger.__version__,
26 author=ranger.__author__,
27 author_email=ranger.__email__,
28 license=ranger.__license__,
29 url='http://savannah.nongnu.org/projects/ranger',
30 scripts=['ranger/data/ranger'],
31 data_files=[('share/man/man1', ['doc/ranger.1'])],
32 package_data={'ranger': ['data/*', 'defaults/rc.conf']},
33 packages=('ranger',
34 'ranger.api',
35 'ranger.colorschemes',
36 'ranger.container',
37 'ranger.core',
38 'ranger.defaults',
39 'ranger.ext',
40 'ranger.fsobject',
41 'ranger.gui',
42 'ranger.gui.widgets'))