Skip to content
Snippets Groups Projects
__pkginfo__.py 1.43 KiB
Newer Older
Nicolas Chauvat's avatar
Nicolas Chauvat committed
# pylint: disable-msg=W0622
"""cubicweb-link packaging information"""

modname = 'link'
distname = "cubicweb-%s" % modname
Sylvain Thénault's avatar
Sylvain Thénault committed
numversion = (1, 4, 1)
Sylvain Thenault's avatar
Sylvain Thenault committed
version = '.'.join(str(num) for num in numversion)
Nicolas Chauvat's avatar
Nicolas Chauvat committed

license = 'LGPL'
author = "Logilab"
author_email = "contact@logilab.fr"
Arthur Lutz's avatar
Arthur Lutz committed
web = 'http://www.cubicweb.org/project/%s' % distname
description = "link component for the CubicWeb framework"
classifiers = [
    'Environment :: Web Environment',
    'Framework :: CubicWeb',
    'Programming Language :: Python',
    'Programming Language :: JavaScript',
    ]

__depends__ = {'cubicweb': '>= 3.8.0'}
from os import listdir as _listdir
from os.path import join, isdir
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 dirname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'i18n', 'migration', 'wdoc'):
    if isdir(dirname):
        data_files.append([join(THIS_CUBE_DIR, dirname), listdir(dirname)])
# Note: here, you'll need to add subdirectories if you want
# them to be included in the debian package