cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl
changeset 11456 077f32a7a4c3
parent 11454 7770559e3945
child 11470 c0167228c12c
--- a/cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl	Thu May 19 14:57:41 2016 +0200
+++ b/cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl	Wed Jul 06 17:46:39 2016 +0200
@@ -1,10 +1,6 @@
 # pylint: disable=W0622
 """%(distname)s application packaging information"""
 
-from os import listdir as _listdir
-from os.path import join, isdir
-from glob import glob
-
 
 modname = '%(cubename)s'
 distname = '%(distname)s'
@@ -27,24 +23,3 @@
     'Programming Language :: Python',
     'Programming Language :: JavaScript',
 ]
-
-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