[IMP] packaging depends

bzr revid: al@openerp.com-20111001164914-34dwbgb94beshlls
This commit is contained in:
Antony Lesuisse 2011-10-01 18:49:14 +02:00
parent 4af0626299
commit 47014a4980
2 changed files with 15 additions and 18 deletions

4
debian/control vendored
View File

@ -14,9 +14,7 @@ Package: openerp
Section: net Section: net
Architecture: all Architecture: all
Depends: Depends:
${misc:Depends}, adduser, python, python-dateutil, python-libxslt1, ${misc:Depends}, adduser, python, postgresql-client, python-dateutil, python-libxslt1, python-lxml, python-mako, python-psycopg2, python-pychart, python-pydot, python-pyparsing, python-reportlab, python-simplejson python-tz, python-webdav, python-werkzeug, python-yaml
python-lxml, python-psycopg2, python-pydot, python-pychart, python-reportlab,
python-tz, python-pyparsing, python-yaml, python-mako, postgresql-client
Conflicts: tinyerp-server, openerp-server Conflicts: tinyerp-server, openerp-server
Replaces: tinyerp-server, openerp-server Replaces: tinyerp-server, openerp-server
Recommends: Recommends:

View File

@ -81,27 +81,26 @@ setuptools.setup(
packages = setuptools.find_packages(), packages = setuptools.find_packages(),
#include_package_data = True, #include_package_data = True,
install_requires = [ install_requires = [
# We require the same version as caldav for lxml.
'lxml==2.1.5',
'mako',
'python-dateutil',
'psycopg2',
# TODO the pychart package we include in openerp corresponds to PyChart 1.37. # TODO the pychart package we include in openerp corresponds to PyChart 1.37.
# It seems there is a single difference, which is a spurious print in generate_docs.py. # It seems there is a single difference, which is a spurious print in generate_docs.py.
# It is probably safe to move to PyChart 1.39 (the latest one). # It is probably safe to move to PyChart 1.39 (the latest one).
# (Let setup.py choose the latest one, and we should check we can remove pychart from # (Let setup.py choose the latest one, and we should check we can remove pychart from
# our tree.) # our tree.) http://download.gna.org/pychart/
# http://download.gna.org/pychart/ # TODO 'pychart',
'pychart',
'pydot',
'pytz',
'reportlab',
'caldav', 'caldav',
'pyyaml',
'pywebdav',
'feedparser', 'feedparser',
'simplejson >= 2.0', 'lxml',
'vatnumber', # required by base_vat module 'mako',
'psycopg2',
'pydot',
'python-dateutil',
'pytz',
'pywebdav',
'pyyaml',
'reportlab',
'simplejson',
'vatnumber', # recommended by base_vat
'werkzeug',
], ],
extras_require = { extras_require = {
'SSL' : ['pyopenssl'], 'SSL' : ['pyopenssl'],