summary refs log tree commit diff stats
path: root/examples/statcsv.nim
Commit message (Collapse)AuthorAgeFilesLines
* import the new stats libJamesP2015-11-071-1/+1
|
* examples: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-1/+1
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* updated iup.nim; made tests greenAraq2014-08-311-3/+3
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* examples/lib use the new wrappersAndreas Rumpf2010-02-281-1/+1
|
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
|
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
|
* added tools and web dirsAndreas Rumpf2009-09-151-0/+0
|
* added missing files;change config for bug #374441Andreas Rumpf2009-05-101-1/+1
|
* version 0.7.8Andreas Rumpf2009-05-081-0/+60
olor: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/env python
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# 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

distutils.core.setup(
	name='ranger',
	description='Vim-like file manager',
	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',
	          'ranger.shared'))