equal
deleted
inserted
replaced
41 if isdir(dname): |
41 if isdir(dname): |
42 data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)]) |
42 data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)]) |
43 # Note: here, you'll need to add subdirectories if you want |
43 # Note: here, you'll need to add subdirectories if you want |
44 # them to be included in the debian package |
44 # them to be included in the debian package |
45 |
45 |
46 __depends_cubes__ = {} |
46 # a dict; you might want to provide a version specification |
47 __depends__ = {'cubicweb': '>= 3.6.0'} |
47 # of the form '>= x.y.z' |
48 __use__ = (%(dependancies)s) |
48 __depends_cubes__ = %(dependencies)s |
|
49 __depends__ = {'cubicweb': '>= 3.7.0'} |
|
50 # obsolete (will be gone in cw 3.8.0) |
|
51 __use__ = tuple(__depends_cubes__) |
49 __recommend__ = () |
52 __recommend__ = () |
50 |
53 |