aboutsummaryrefslogtreecommitdiff
blob: 2ea55bd3a5c5cdd28d00f1f6f9652e854ea62263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-

"""
    g_octave
    ~~~~~~~~
    
    Main package of g-Octave
    
    :copyright: (c) 2009-2010 by Rafael Goncalves Martins
    :license: GPL-2, see LICENSE for more details.
"""

__all__ = [
    'config',
    'description',
    'description_tree',
    'exception',
    'ebuild',
    'fetch',
    'overlay'
]

__author__ = 'Rafael Goncalves Martins'
__email__ = 'rafael@rafaelmartins.eng.br'

__description__ = """\
A tool that generates and installs ebuilds for Octave-Forge packages "on-the-fly"
to Gentoo Linux, using Portage.
"""

__url__ = 'http://g-octave.rafaelmartins.eng.br/'
__copyright__ = '(c) 2009-2010 %s' % __author__
__license__ = 'GPLv2'

__version__ = '0.3'