fix (and comment) dependencies

This commit is contained in:
Christophe Benz 2010-07-08 14:02:43 +02:00
commit a235e995d6
8 changed files with 19 additions and 2 deletions

View file

@ -40,5 +40,7 @@ setup(
],
install_requires=[
'weboob-core',
# bnporc requires Image module
#'PIL',
],
)

View file

@ -39,5 +39,6 @@ setup(
],
install_requires=[
'weboob-core',
# html5lib, no egg?
],
)

View file

@ -39,5 +39,6 @@ setup(
],
install_requires=[
'weboob-core',
# feedparser, no egg?
],
)

View file

@ -39,5 +39,6 @@ setup(
],
install_requires=[
'weboob-core',
# gdata, no egg?
],
)

View file

@ -44,11 +44,15 @@ setup(
'weboob.applications.qweboobcfg',
'weboob.tools.application.qt',
],
data_files=[
('weboob/tools', ['weboob/tools/__init__.py']),
('weboob/tools/application', ['weboob/tools/application/__init__.py']),
],
scripts=[
'scripts/qweboobcfg',
],
install_requires=[
'weboob-core',
'PyQt',
#'PyQt',
],
)

View file

@ -21,7 +21,7 @@ from setuptools import setup
setup(
name='weboob-core-webkit',
name='weboob-core-webkit-formatter',
version='0.1',
description='Weboob, Web Out Of Browsers - core library, WebKit formatter',
author='Christophe Benz',
@ -44,8 +44,14 @@ setup(
'weboob.tools.application.formatters',
],
packages=[
'weboob',
'weboob.tools.application.formatters.webkit',
],
data_files=[
('weboob/tools', ['weboob/tools/__init__.py']),
('weboob/tools/application', ['weboob/tools/application/__init__.py']),
('weboob/tools/application/formatters', ['weboob/tools/application/formatters/__init__.py']),
],
install_requires=[
'weboob-core',
# webkit dependency, is not an egg?

View file

@ -45,5 +45,6 @@ setup(
],
install_requires=[
'weboob-backends-dating',
#'yaml',
],
)

View file

@ -45,5 +45,6 @@ setup(
],
install_requires=[
'weboob-backends-video',
# python-qt4-phonon
],
)