about summary refs log blame commit diff stats
path: root/.gitignore
blob: afe90e4aff2f0db90637e0edd6f4e22e2d455b2c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
    

       
   

app/
build/
.cache/
*.o
pong
.flatpak-builder
flatpak/
flatpak_repo/
build-dir/
Makefile
Pong.make
*.flatpak
bin/
obj/
c1"># but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. 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'], data_files=[('share/man/man1', ['doc/ranger.1'])], package_data={'ranger': ['data/*']}, packages=('ranger', 'ranger.api', 'ranger.colorschemes', 'ranger.container', 'ranger.core', 'ranger.defaults', 'ranger.ext', 'ranger.fsobject', 'ranger.gui', 'ranger.gui.widgets', 'ranger.help'))