__pkginfo__.py
brancholdstable
changeset 7074 e4580e5f0703
parent 7032 b712477ae286
child 7040 9b1f9bc74f5d
equal deleted inserted replaced
6749:48f468f33704 7074:e4580e5f0703
     1 # pylint: disable-msg=W0622,C0103
     1 # pylint: disable=W0622,C0103
     2 # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     2 # copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     3 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     3 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     4 #
     4 #
     5 # This file is part of CubicWeb.
     5 # This file is part of CubicWeb.
     6 #
     6 #
     7 # CubicWeb is free software: you can redistribute it and/or modify it under the
     7 # CubicWeb is free software: you can redistribute it and/or modify it under the
    20 software
    20 software
    21 """
    21 """
    22 
    22 
    23 modname = distname = "cubicweb"
    23 modname = distname = "cubicweb"
    24 
    24 
    25 numversion = (3, 9, 9)
    25 numversion = (3, 10, 9)
    26 version = '.'.join(str(num) for num in numversion)
    26 version = '.'.join(str(num) for num in numversion)
    27 
    27 
    28 description = "a repository of entities / relations for knowledge management"
    28 description = "a repository of entities / relations for knowledge management"
    29 author = "Logilab"
    29 author = "Logilab"
    30 author_email = "contact@logilab.fr"
    30 author_email = "contact@logilab.fr"
    38            'Programming Language :: Python',
    38            'Programming Language :: Python',
    39            'Programming Language :: JavaScript',
    39            'Programming Language :: JavaScript',
    40 ]
    40 ]
    41 
    41 
    42 __depends__ = {
    42 __depends__ = {
    43     'logilab-common': '>= 0.51.0',
    43     'logilab-common': '>= 0.54.0',
    44     'logilab-mtconverter': '>= 0.8.0',
    44     'logilab-mtconverter': '>= 0.8.0',
    45     'rql': '>= 0.26.2',
    45     'rql': '>= 0.28.0',
    46     'yams': '>= 0.30.1',
    46     'yams': '>= 0.30.1',
    47     'docutils': '>= 0.6',
    47     'docutils': '>= 0.6',
    48     #gettext                    # for xgettext, msgcat, etc...
    48     #gettext                    # for xgettext, msgcat, etc...
    49     # web dependancies
    49     # web dependancies
    50     'simplejson': '>= 2.0.9',
    50     'simplejson': '>= 2.0.9',
    51     'lxml': '',
    51     'lxml': '',
    52     'Twisted': '',
    52     'Twisted': '',
    53     # XXX graphviz
    53     # XXX graphviz
    54     # server dependencies
    54     # server dependencies
    55     'logilab-database': '>= 1.3.2',
    55     'logilab-database': '>= 1.3.3',
    56     'pysqlite': '>= 2.5.5', # XXX install pysqlite2
    56     'pysqlite': '>= 2.5.5', # XXX install pysqlite2
    57     }
    57     }
    58 
    58 
    59 __recommends__ = {
    59 __recommends__ = {
    60     'Pyro': '>= 3.9.1, < 4.0.0',
    60     'Pyro': '>= 3.9.1, < 4.0.0',