skeleton/__pkginfo__.py.tmpl
changeset 5024 9e718abe3fde
parent 4972 7b0cd6e024e2
child 5025 2826f5406201
equal deleted inserted replaced
5023:70d5d54e8b81 5024:9e718abe3fde
     6 
     6 
     7 numversion = (0, 1, 0)
     7 numversion = (0, 1, 0)
     8 version = '.'.join(str(num) for num in numversion)
     8 version = '.'.join(str(num) for num in numversion)
     9 
     9 
    10 license = 'LCL'
    10 license = 'LCL'
    11 copyright = '''Copyright (c) %(year)s %(author)s.
       
    12 %(author-web-site)s -- mailto:%(author-email)s'''
       
    13 
    11 
    14 author = '%(author)s'
    12 author = '%(author)s'
    15 author_email = '%(author-email)s'
    13 author_email = '%(author-email)s'
    16 
    14 
    17 short_desc = '%(shortdesc)s'
    15 description = '%(shortdesc)s'
    18 long_desc = '''%(longdesc)s'''
       
    19 
    16 
    20 web = 'http://www.cubicweb.org/project/%%s' %% distname
    17 web = 'http://www.cubicweb.org/project/%%s' %% distname
    21 
    18 
    22 
    19 
    23 from os import listdir as _listdir
    20 from os import listdir as _listdir
    41     if isdir(dname):
    38     if isdir(dname):
    42         data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])
    39         data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])
    43 # Note: here, you'll need to add subdirectories if you want
    40 # Note: here, you'll need to add subdirectories if you want
    44 # them to be included in the debian package
    41 # them to be included in the debian package
    45 
    42 
       
    43 __depends__ = {'cubicweb': '>= 3.6.0'}
    46 __depends_cubes__ = {}
    44 __depends_cubes__ = {}
    47 __depends__ = {'cubicweb': '>= 3.6.0'}
    45 __recommends__ = {}
    48 __use__ = (%(dependancies)s)
    46 __recommends_cubes__ = {}
    49 __recommend__ = ()
       
    50 
    47