__pkginfo__.py
changeset 11649 8914052abdca
parent 11646 dc3182d7b37c
child 11654 00bec1345a78
equal deleted inserted replaced
11648:9a112017974a 11649:8914052abdca
     2 """cubicweb-pyramid application packaging information"""
     2 """cubicweb-pyramid application packaging information"""
     3 
     3 
     4 modname = 'pyramid'
     4 modname = 'pyramid'
     5 distname = 'cubicweb-pyramid'
     5 distname = 'cubicweb-pyramid'
     6 
     6 
     7 numversion = (0, 1, 1)
     7 numversion = (0, 2, 0)
     8 version = '.'.join(str(num) for num in numversion)
     8 version = '.'.join(str(num) for num in numversion)
     9 
     9 
    10 license = 'LGPL'
    10 license = 'LGPL'
    11 author = 'UNLISH S.A.S. (Montpellier, FRANCE)'
    11 author = 'UNLISH S.A.S. (Montpellier, FRANCE)'
    12 author_email = 'contact@unlish.com'
    12 author_email = 'contact@unlish.com'
    14 web = 'http://www.cubicweb.org/project/%s' % distname
    14 web = 'http://www.cubicweb.org/project/%s' % distname
    15 
    15 
    16 __depends__ = {
    16 __depends__ = {
    17     'cubicweb': '>= 3.19.3',
    17     'cubicweb': '>= 3.19.3',
    18     'wsgicors': '>= 0.3',
    18     'wsgicors': '>= 0.3',
    19     'pyramid-cubicweb': '>= 0.1.2'
    19     'pyramid-cubicweb': '>= 0.2.0'
    20 }
    20 }
    21 __recommends__ = {}
    21 __recommends__ = {}
    22 
    22 
    23 classifiers = [
    23 classifiers = [
    24     'Environment :: Web Environment',
    24     'Environment :: Web Environment',