Newer
Older
# pylint: disable-msg=W0622
"""cubicweb-fresh application packaging information"""
distname = 'cubicweb-fresh'
modname = distname.split('-', 1)[1]
copyright = '''Copyright (c) 2008-2009 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr'''
author = 'Logilab'
author_email = 'contact@logilab.fr'
short_desc = 'expense reporting application'
long_desc = '''expense reporting application'''
from os import listdir as _listdir
from os.path import join, isdir
ftp = ''
web = 'http://www.cubicweb.org/project/%s' % distname
pyversions = ['2.4']
#from cubicweb.devtools.pkginfo import get_distutils_datafiles
TEMPLATES_DIR = join('share', 'cubicweb', 'cubes')
THIS_TEMPLATE_DIR = join(TEMPLATES_DIR, 'fresh')
def listdir(dirpath):
return [join(dirpath, fname) for fname in _listdir(dirpath)
if fname[0] != '.' and not fname.endswith('.pyc')
and not fname.endswith('~')]
try:
data_files = [
[THIS_TEMPLATE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']],
[join(THIS_TEMPLATE_DIR, 'i18n'), listdir('i18n')],
[join(THIS_TEMPLATE_DIR, 'views'), listdir('views')],
[join(THIS_TEMPLATE_DIR, 'migration'), listdir('migration')],
]
except OSError:
# we are in an installed directory
pass
cube_eid = None # <=== FIXME if you need direct bug-subscription
__use__ = ('expense', 'workcase')
classifiers = [
'Environment :: Web Environment',
'Framework :: CubicWeb',
'Programming Language :: Python',
'Programming Language :: JavaScript',
]