skeleton/__pkginfo__.py.tmpl
changeset 5184 955ee1b24756
parent 5163 3079b8345915
child 5347 8ebed973819b
equal deleted inserted replaced
5177:395e1ff018ae 5184:955ee1b24756
     5 distname = '%(distname)s'
     5 distname = '%(distname)s'
     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 = '%(license)s'
    11 
    11 
    12 author = '%(author)s'
    12 author = '%(author)s'
    13 author_email = '%(author-email)s'
    13 author_email = '%(author-email)s'
    14 
    14 
    15 description = '%(shortdesc)s'
    15 description = '%(shortdesc)s'
    38     if isdir(dname):
    38     if isdir(dname):
    39         data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])
    39         data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])
    40 # Note: here, you'll need to add subdirectories if you want
    40 # Note: here, you'll need to add subdirectories if you want
    41 # them to be included in the debian package
    41 # them to be included in the debian package
    42 
    42 
    43 __depends__ = {'cubicweb': '>= 3.8.0'}
    43 __depends__ = {'cubicweb': '>= %(version)s'}
    44 __recommends__ = {}
    44 __recommends__ = {}
    45 
    45