1# -*- coding: utf-8 -*-
2# Copyright © 2008 Carl Chenet <chaica@ohmytux.com>
3# This program is free software: you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation, either version 3 of the License, or
6# any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16from distutils.core import setup
17import os.path
18
19CLASSIFIERS = [
20    'Intended Audience :: System Administrators',
21    'Development Status :: 5 - Production/Stable',
22    'Environment :: Console',
23    'License :: OSI Approved :: GNU General Public License (GPL)',
24    'Operating System :: OS Independent',
25    'Natural Language :: French',
26    'Programming Language :: Python',
27]
28
29
30
31setup(name = 'belier',
32    version = '1.2',
33    license = 'GNU GPL v3',
34    description = 'Ssh connection generation tool',
35    long_description = 'Belier allows automated openings of a shell or command executions on remote computers through ssh. The main feature is Belier\'s ability to cross several computers before joining the final machine.',
36    classifiers = CLASSIFIERS,
37    author = 'Carl Chenet',
38    author_email = 'chaica@ohmytux.com',
39    url = 'http://www.ohmytux.com/belier',
40    download_url = 'http://www.ohmytux.com/belier',
41    packages = ['belier'],
42    scripts = ['bel'],
43    data_files=[(os.path.join('share','locale','fr','LC_MESSAGES'), ['i18n/fr/bel.mo'])]
44)
45
46