| 1 | # Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE). |
|---|
| 2 | # http://www.logilab.fr/ -- mailto:contact@logilab.fr |
|---|
| 3 | |
|---|
| 4 | # This program is free software; you can redistribute it and/or modify it under |
|---|
| 5 | # the terms of the GNU General Public License as published by the Free Software |
|---|
| 6 | # Foundation; either version 2 of the License, or (at your option) any later |
|---|
| 7 | # version. |
|---|
| 8 | |
|---|
| 9 | # This program is distributed in the hope that it will be useful, but WITHOUT |
|---|
| 10 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
|---|
| 11 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 12 | |
|---|
| 13 | # You should have received a copy of the GNU General Public License along with |
|---|
| 14 | # this program; if not, write to the Free Software Foundation, Inc., |
|---|
| 15 | # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|---|
| 16 | """logilab.common packaging information""" |
|---|
| 17 | |
|---|
| 18 | distname = 'logilab-common' |
|---|
| 19 | modname = 'common' |
|---|
| 20 | numversion = (0, 28, 2) |
|---|
| 21 | version = '.'.join([str(num) for num in numversion]) |
|---|
| 22 | |
|---|
| 23 | license = 'GPL' |
|---|
| 24 | copyright = '''Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE). |
|---|
| 25 | http://www.logilab.fr/ -- mailto:contact@logilab.fr''' |
|---|
| 26 | |
|---|
| 27 | author = "Logilab" |
|---|
| 28 | author_email = "devel@logilab.fr" |
|---|
| 29 | |
|---|
| 30 | short_desc = "useful miscellaneous modules used by Logilab projects" |
|---|
| 31 | |
|---|
| 32 | long_desc = """logilab-common is a collection of low-level Python packages and \ |
|---|
| 33 | modules, |
|---|
| 34 | designed to ease: |
|---|
| 35 | * handling command line options and configuration files |
|---|
| 36 | * writing interactive command line tools |
|---|
| 37 | * manipulation files and character strings |
|---|
| 38 | * interfacing to OmniORB |
|---|
| 39 | * generating of SQL queries |
|---|
| 40 | * running unit tests |
|---|
| 41 | * manipulating tree structures |
|---|
| 42 | * accessing RDBMS (currently postgreSQL, mysql and sqlite) |
|---|
| 43 | * generating text and HTML reports |
|---|
| 44 | * logging""" |
|---|
| 45 | |
|---|
| 46 | |
|---|
| 47 | web = "http://www.logilab.org/project/%s" % distname |
|---|
| 48 | ftp = "ftp://ftp.logilab.org/pub/%s" % modname |
|---|
| 49 | mailinglist = "mailto://python-projects@lists.logilab.org" |
|---|
| 50 | |
|---|
| 51 | subpackage_of = 'logilab' |
|---|
| 52 | subpackage_master = True |
|---|
| 53 | |
|---|
| 54 | scripts = ('bin/pytest',) |
|---|
| 55 | from os.path import join |
|---|
| 56 | include_dirs = [join('test', 'data')] |
|---|
| 57 | pyversions = ['2.3', '2.4', '2.5'] |
|---|
| 58 | debian_maintainer = 'Alexandre Fayolle' |
|---|
| 59 | debian_maintainer_email = 'afayolle@debian.org' |
|---|