Skip to content
Snippets Groups Projects
Commit f46868c7344b authored by Nicolas Chauvat's avatar Nicolas Chauvat
Browse files

Package: describe dependencies in pkginfo

parent 3727402422b4
No related branches found
No related tags found
No related merge requests found
"""cubicweb-fresh application package """cubicweb-fresh"""
expense reporting application
"""
# pylint: disable-msg=W0622 # pylint: disable-msg=W0622
"""cubicweb-fresh application packaging information""" """cubicweb-fresh application packaging information"""
modname = 'fresh'
distname = 'cubicweb-fresh' distname = 'cubicweb-fresh'
...@@ -4,5 +5,4 @@ ...@@ -4,5 +5,4 @@
distname = 'cubicweb-fresh' distname = 'cubicweb-fresh'
modname = distname.split('-', 1)[1]
numversion = (0, 3, 2) numversion = (0, 3, 2)
version = '.'.join(str(num) for num in numversion) version = '.'.join(str(num) for num in numversion)
...@@ -14,10 +14,36 @@ ...@@ -14,10 +14,36 @@
author = 'Logilab' author = 'Logilab'
author_email = 'contact@logilab.fr' author_email = 'contact@logilab.fr'
short_desc = 'expense reporting application' short_desc = 'expense tracking application built on the CubicWeb framework'
long_desc = '''expense reporting application''' long_desc = '''This CubicWeb component provides an expense tracking application.
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
'''
ftp = ''
web = 'http://www.cubicweb.org/project/%s' % distname
classifiers = [
'Environment :: Web Environment',
'Framework :: CubicWeb',
'Programming Language :: Python',
'Programming Language :: JavaScript',
]
pyversions = ['2.4']
__depends_cubes__ = {'expense': '>= 0.4.4',
'workcase': None,
}
__depends__ = {'cubicweb': '>= 3.2.0'}
for key, value in __depends_cubes__.items():
__depends__['cubicweb-'+key] = value
__use__ = tuple(__depends_cubes__)
__recommend__ = ()
# packaging ###
from glob import glob from glob import glob
from os import listdir as _listdir from os import listdir as _listdir
from os.path import join, isdir from os.path import join, isdir
...@@ -19,13 +45,8 @@ ...@@ -19,13 +45,8 @@
from glob import glob from glob import glob
from os import listdir as _listdir from os import listdir as _listdir
from os.path import join, isdir 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 #from cubicweb.devtools.pkginfo import get_distutils_datafiles
TEMPLATES_DIR = join('share', 'cubicweb', 'cubes') TEMPLATES_DIR = join('share', 'cubicweb', 'cubes')
THIS_TEMPLATE_DIR = join(TEMPLATES_DIR, 'fresh') THIS_TEMPLATE_DIR = join(TEMPLATES_DIR, 'fresh')
...@@ -48,11 +69,3 @@ ...@@ -48,11 +69,3 @@
cube_eid = None # <=== FIXME if you need direct bug-subscription 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',
]
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
Conflicts: cubicweb-fresh, erudi-fresh-client, erudi-fresh-server, erudi-fresh-comp Conflicts: cubicweb-fresh, erudi-fresh-client, erudi-fresh-server, erudi-fresh-comp
Replaces: cubicweb-fresh, erudi-fresh-client, erudi-fresh-server, erudi-fresh-comp Replaces: cubicweb-fresh, erudi-fresh-client, erudi-fresh-server, erudi-fresh-comp
Depends: cubicweb-common (>= 3.2.0), cubicweb-expense (>= 0.4.4), cubicweb-workcase Depends: cubicweb-common (>= 3.2.0), cubicweb-expense (>= 0.4.4), cubicweb-workcase
Description: expense reporting application Description: expense tracking application built on the CubicWeb framework
CubicWeb is a entities / relations bases knowledge management system This CubicWeb component provides an expense tracking application.
developed at Logilab.
. .
...@@ -18,2 +17,2 @@ ...@@ -18,2 +17,2 @@
. .
expense reporting application CubicWeb is a semantic web application framework, see http://www.cubicweb.org
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment