more work on deb
This commit is contained in:
parent
5591f001d8
commit
e3a0561a94
12 changed files with 80 additions and 37 deletions
|
|
@ -35,11 +35,14 @@ setup(
|
|||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.bnporc',
|
||||
'weboob.backends.bnporc.data',
|
||||
'weboob.backends.bnporc.pages',
|
||||
'weboob.backends.cragr',
|
||||
'weboob.backends.cragr.pages',
|
||||
],
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
'weboob.backends.bnporc': ['data/*'],
|
||||
},
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
'ClientForm', # python-clientform
|
||||
|
|
|
|||
|
|
@ -35,10 +35,13 @@ setup(
|
|||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.aum',
|
||||
'weboob.backends.aum.data',
|
||||
'weboob.backends.aum.optim',
|
||||
'weboob.backends.aum.pages',
|
||||
],
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
'weboob.backends.aum': ['data/*'],
|
||||
},
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
'html5lib', # python-html5lib
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ setup(
|
|||
'weboob.backends.ina',
|
||||
'weboob.backends.ina.pages',
|
||||
'weboob.backends.youtube',
|
||||
'weboob.backends.youtube.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
|
|
|
|||
|
|
@ -46,10 +46,10 @@ setup(
|
|||
'weboob.applications.qweboobcfg',
|
||||
'weboob.tools.application.qt',
|
||||
],
|
||||
data_files=[
|
||||
('weboob/tools', ['weboob/tools/__init__.py']),
|
||||
('weboob/tools/application', ['weboob/tools/application/__init__.py']),
|
||||
],
|
||||
# data_files=[
|
||||
# ('weboob/tools', ['weboob/tools/__init__.py']),
|
||||
# ('weboob/tools/application', ['weboob/tools/application/__init__.py']),
|
||||
# ],
|
||||
scripts=[
|
||||
'scripts/weboob-config-qt',
|
||||
],
|
||||
|
|
|
|||
|
|
@ -49,16 +49,16 @@ setup(
|
|||
'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']),
|
||||
],
|
||||
# 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', # python-weboob-core
|
||||
# not Pypi packages:
|
||||
# Depends
|
||||
# gtk
|
||||
# webkit
|
||||
# python-gtk
|
||||
# python-webkit
|
||||
],
|
||||
)
|
||||
|
|
|
|||
|
|
@ -17,30 +17,19 @@
|
|||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
with open('README') as f:
|
||||
readme_data = f.read()
|
||||
|
||||
setup(
|
||||
name='weboob-core',
|
||||
version='0.1',
|
||||
description='Weboob, Web Out Of Browsers - core library',
|
||||
long_description="""
|
||||
Weboob is a project which provides a core library, backends and applications.
|
||||
|
||||
The core library defines capabilities: features common to various websites. For example, http://www.youtube.com and
|
||||
http://www.dailymotion.com are both videos providers: Weboob defines the “ICapVideo” capability.
|
||||
|
||||
Each backend interfaces a website and implements one or many of these capabilities. Backends can be configured, which
|
||||
means that the end-user can provide personal information to access the underlaying website (login/password for example).
|
||||
|
||||
Applications offer the ability to the end-user to work with many backends in parallel, in a multi-threaded way. For
|
||||
example, one could search a video on many providers websites. Applications are toolkit-agnostic. They can use Gtk, Qt or
|
||||
text-only, more adapted to reuse data through pipes.
|
||||
|
||||
The core library provides base classes which help the developer to write backends and applications.
|
||||
|
||||
Weboob is written in Python and is distributed under the GPLv3 license.
|
||||
""",
|
||||
long_description=readme_data,
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue