OLD | NEW |
(Empty) | |
| 1 # copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
| 2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
| 3 # |
| 4 # This file is part of logilab-common. |
| 5 # |
| 6 # logilab-common is free software: you can redistribute it and/or modify it unde
r |
| 7 # the terms of the GNU Lesser General Public License as published by the Free |
| 8 # Software Foundation, either version 2.1 of the License, or (at your option) an
y |
| 9 # later version. |
| 10 # |
| 11 # logilab-common is distributed in the hope that it will be useful, but WITHOUT |
| 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| 13 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
| 14 # details. |
| 15 # |
| 16 # You should have received a copy of the GNU Lesser General Public License along |
| 17 # with logilab-common. If not, see <http://www.gnu.org/licenses/>. |
| 18 """logilab.common packaging information""" |
| 19 __docformat__ = "restructuredtext en" |
| 20 import sys |
| 21 |
| 22 distname = 'logilab-common' |
| 23 modname = 'common' |
| 24 subpackage_of = 'logilab' |
| 25 subpackage_master = True |
| 26 |
| 27 numversion = (0, 57, 1) |
| 28 version = '.'.join([str(num) for num in numversion]) |
| 29 |
| 30 license = 'LGPL' # 2.1 or later |
| 31 description = "collection of low-level Python packages and modules used by Logil
ab projects" |
| 32 web = "http://www.logilab.org/project/%s" % distname |
| 33 ftp = "ftp://ftp.logilab.org/pub/%s" % modname |
| 34 mailinglist = "mailto://python-projects@lists.logilab.org" |
| 35 author = "Logilab" |
| 36 author_email = "contact@logilab.fr" |
| 37 |
| 38 |
| 39 from os.path import join |
| 40 scripts = [join('bin', 'pytest')] |
| 41 include_dirs = [join('test', 'data')] |
| 42 |
| 43 if sys.version_info < (2, 7): |
| 44 install_requires = ['unittest2 >= 0.5.1'] |
| 45 |
OLD | NEW |