skeleton/__pkginfo__.py.tmpl
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Thu, 29 Apr 2010 14:34:13 +0200
brancholdstable
changeset 5440 2d0982252e8d
parent 5346 9ec5c37f11ba
child 5347 8ebed973819b
permissions -rw-r--r--
Added tag cubicweb-version-3.7.5 for changeset c476d106705e

# pylint: disable-msg=W0622
"""%(distname)s application packaging information"""

modname = '%(cubename)s'
distname = '%(distname)s'

numversion = (0, 1, 0)
version = '.'.join(str(num) for num in numversion)

license = 'LCL'
copyright = '''Copyright (c) %(year)s %(author)s.
%(author-web-site)s -- mailto:%(author-email)s'''

author = '%(author)s'
author_email = '%(author-email)s'

short_desc = '%(shortdesc)s'
long_desc = '''%(longdesc)s'''

web = 'http://www.cubicweb.org/project/%%s' %% distname


from os import listdir as _listdir
from os.path import join, isdir, exists
from glob import glob

THIS_CUBE_DIR = join('share', 'cubicweb', 'cubes', modname)

def listdir(dirpath):
    return [join(dirpath, fname) for fname in _listdir(dirpath)
            if fname[0] != '.' and not fname.endswith('.pyc')
            and not fname.endswith('~')
            and not isdir(join(dirpath, fname))]

data_files = [
    # common files
    [THIS_CUBE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']],
    ]
# check for possible extended cube layout
for dname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'i18n', 'migration'):
    if isdir(dname):
        data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])
# Note: here, you'll need to add subdirectories if you want
# them to be included in the debian package

# a dict; you might want to provide a version specification
# of the form '>= x.y.z'
__depends__ = {'cubicweb': '>= 3.7.0'}
__depends_cubes__ = %(dependencies)s
__recommends_cubes__ = {}
# obsolete (will be gone in cw 3.8.0)
__use__ = tuple(__depends_cubes__)
__recommend__ = tuple(__recommends_cubes__)