__pkginfo__.py
author David Douard <david.douard@logilab.fr>
Wed, 11 May 2016 11:27:50 +0200
changeset 11678 a615997559a6
parent 11675 f81823952745
permissions -rw-r--r--
[doc] improve a bit the README to explain how to allow login in dev mode

# pylint: disable=W0622
"""cubicweb-pyramid application packaging information"""

modname = 'pyramid'
distname = 'cubicweb-pyramid'

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

license = 'LGPL'
author = 'UNLISH S.A.S. (Montpellier, FRANCE)'
author_email = 'contact@unlish.com'
description = "Add the 'pyramid' command to cubicweb-ctl"
web = 'http://www.cubicweb.org/project/%s' % distname

__depends__ = {
    'cubicweb': '>= 3.19.3',
    'wsgicors': '>= 0.3',
    'pyramid-cubicweb': '>= 0.2.0',
    'waitress': None,
}
__recommends__ = {}

classifiers = [
    'Environment :: Web Environment',
    'Framework :: CubicWeb',
    'Programming Language :: Python',
    'Programming Language :: JavaScript',
    ]

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 dname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'wdoc', '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