Skip to content
Snippets Groups Projects
__pkginfo__.py 2.06 KiB
Newer Older
# pylint: disable-msg=W0622
"""cubicweb-card application packaging information"""

modname = 'card'
distname = 'cubicweb-card'

Sylvain Thénault's avatar
Sylvain Thénault committed
numversion = (0, 2, 0)
version = '.'.join(str(num) for num in numversion)

Arthur Lutz's avatar
Arthur Lutz committed
license = 'LGPL'
Sylvain Thénault's avatar
Sylvain Thénault committed
copyright = '''Copyright (c) 2009-2010 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr -- mailto:contact@logilab.fr'''

author = 'LOGILAB S.A. (Paris, FRANCE)'
author_email = 'contact@logilab.fr'

short_desc = 'card component for the CubicWeb framework'
long_desc = '''This CubicWeb component models cards that are like wiki pages.
Cards have a title, an abstract and some textual content as text, rest or html.

CubicWeb is a semantic web application framework, see http://www.cubicweb.org
'''

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

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

pyversions = ['2.4']

#from cubicweb.devtools.pkginfo import get_distutils_datafiles
CUBES_DIR = join('share', 'cubicweb', 'cubes')
THIS_CUBE_DIR = join(CUBES_DIR, 'card')

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

from glob import glob
try:
    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'):
        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
except OSError:
    # we are in an installed directory
    pass


__depends_cubes__ = {}
Sylvain Thénault's avatar
Sylvain Thénault committed
__depends__ = {'cubicweb': '>= 3.6.0'}
__use__ = tuple(__depends_cubes__)
__recommend__ = ()

Arthur Lutz's avatar
Arthur Lutz committed
classifiers = [
           'Environment :: Web Environment',
           'Framework :: CubicWeb',
           'Programming Language :: Python',
           'Programming Language :: JavaScript',
]