skeleton/__pkginfo__.py.tmpl
branchstable
changeset 6828 b022065b4376
parent 5536 b7fba311e8d0
child 7003 6eeed1e9782c
equal deleted inserted replaced
6827:e730b401f00e 6828:b022065b4376
     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 = '%(license)s'
    10 license = '%(license)s'
    11 
       
    12 author = '%(author)s'
    11 author = '%(author)s'
    13 author_email = '%(author-email)s'
    12 author_email = '%(author-email)s'
       
    13 description = '%(shortdesc)s'
       
    14 web = 'http://www.cubicweb.org/project/%%s' %% distname
    14 
    15 
    15 description = '%(shortdesc)s'
    16 __depends__ =  %(dependencies)s
    16 
    17 __recommends__ = {}
    17 web = 'http://www.cubicweb.org/project/%%s' %% distname
       
    18 
    18 
    19 
    19 
    20 from os import listdir as _listdir
    20 from os import listdir as _listdir
    21 from os.path import join, isdir, exists
    21 from os.path import join, isdir, exists
    22 from glob import glob
    22 from glob import glob
    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__ =  %(dependencies)s
       
    44 __recommends__ = {}
       
    45