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