Merge remote branch 'cbenz/debian_packages'
Conflicts: .gitignore
This commit is contained in:
commit
aac4ae7787
37 changed files with 453 additions and 94 deletions
53
tools/packaging/setup.py.d/backends-bank.py
Executable file
53
tools/packaging/setup.py.d/backends-bank.py
Executable file
|
|
@ -0,0 +1,53 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-bank',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing bank capability',
|
||||
author='Laurent Bachelier',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapBank',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.bnporc',
|
||||
'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
|
||||
# not Pypi packages:
|
||||
# Suggests
|
||||
# python-imaging
|
||||
],
|
||||
)
|
||||
51
tools/packaging/setup.py.d/backends-dating.py
Executable file
51
tools/packaging/setup.py.d/backends-dating.py
Executable file
|
|
@ -0,0 +1,51 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-dating',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing dating capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapDating',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.aum',
|
||||
'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
|
||||
'PIL', # python-imaging
|
||||
'simplejson', # python-simplejson
|
||||
],
|
||||
)
|
||||
46
tools/packaging/setup.py.d/backends-messages.py
Executable file
46
tools/packaging/setup.py.d/backends-messages.py
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-messages',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing messages capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapMessages',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.dlfp',
|
||||
'weboob.backends.dlfp.pages',
|
||||
'weboob.backends.fourchan',
|
||||
'weboob.backends.fourchan.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
'FeedParser', # python-feedparser
|
||||
],
|
||||
)
|
||||
43
tools/packaging/setup.py.d/backends-torrent.py
Executable file
43
tools/packaging/setup.py.d/backends-torrent.py
Executable file
|
|
@ -0,0 +1,43 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-torrent',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing torrent capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapTorrent',
|
||||
namespace_packages = ['weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.gazelle',
|
||||
'weboob.backends.gazelle.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
],
|
||||
)
|
||||
44
tools/packaging/setup.py.d/backends-travel.py
Executable file
44
tools/packaging/setup.py.d/backends-travel.py
Executable file
|
|
@ -0,0 +1,44 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-travel',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing travel capability',
|
||||
author='Romain Bignon, Julien Hébert',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapTravel',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.canaltp',
|
||||
'weboob.backends.transilien',
|
||||
'weboob.backends.transilien.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
],
|
||||
)
|
||||
45
tools/packaging/setup.py.d/backends-video-nsfw.py
Executable file
45
tools/packaging/setup.py.d/backends-video-nsfw.py
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-video-nsfw',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing video capability - non-suitable for work',
|
||||
author='Romain Bignon, Roger Philibert',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapVideo',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.youjizz',
|
||||
'weboob.backends.youjizz.pages',
|
||||
'weboob.backends.youporn',
|
||||
'weboob.backends.youporn.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
],
|
||||
)
|
||||
49
tools/packaging/setup.py.d/backends-video.py
Executable file
49
tools/packaging/setup.py.d/backends-video.py
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-video',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing video capability',
|
||||
author='Christophe Benz, Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapVideo',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.ina',
|
||||
'weboob.backends.ina.pages',
|
||||
'weboob.backends.youtube',
|
||||
],
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
'weboob.backends.ina': ['data/*'],
|
||||
},
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
'gdata', # python-gdata
|
||||
],
|
||||
)
|
||||
42
tools/packaging/setup.py.d/backends-weather.py
Executable file
42
tools/packaging/setup.py.d/backends-weather.py
Executable file
|
|
@ -0,0 +1,42 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-backends-weather',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing weather capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/ICapWeather',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.yweather',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
],
|
||||
)
|
||||
46
tools/packaging/setup.py.d/boobank.py
Executable file
46
tools/packaging/setup.py.d/boobank.py
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-boobank',
|
||||
version='0.1',
|
||||
description='Boobank, the Weboob bank-accounts swiss-knife',
|
||||
long_description='List your bank accounts and get info about them',
|
||||
author='Christophe Benz, Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Boobank',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.boobank',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/boobank',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-bank', # python-weboob-backends-bank
|
||||
],
|
||||
)
|
||||
56
tools/packaging/setup.py.d/core-qt.py
Executable file
56
tools/packaging/setup.py.d/core-qt.py
Executable file
|
|
@ -0,0 +1,56 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
import os
|
||||
|
||||
|
||||
os.system('make -C weboob/tools/application/qt')
|
||||
|
||||
setup(
|
||||
name='weboob-core-qt',
|
||||
version='0.1',
|
||||
description='Weboob, Web Out Of Browsers - core library, Qt configuration GUI',
|
||||
long_description='Configure backends using a Qt GUI.',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org',
|
||||
namespace_packages = [
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.tools',
|
||||
'weboob.tools.application',
|
||||
],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications.qweboobcfg',
|
||||
'weboob.tools.application.qt',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/weboob-config-qt',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
'PyQt', # python-qt4
|
||||
],
|
||||
)
|
||||
59
tools/packaging/setup.py.d/core-webkit-formatter.py
Executable file
59
tools/packaging/setup.py.d/core-webkit-formatter.py
Executable file
|
|
@ -0,0 +1,59 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-core-webkit-formatter',
|
||||
version='0.1',
|
||||
description='Weboob, Web Out Of Browsers - core library, WebKit formatter',
|
||||
author='Christophe Benz',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org',
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Environment :: Web Environment',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GNU General Public License (GPL)',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Internet',
|
||||
],
|
||||
namespace_packages = [
|
||||
'weboob',
|
||||
'weboob.tools',
|
||||
'weboob.tools.application',
|
||||
'weboob.tools.application.formatters',
|
||||
],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.tools.application.formatters.webkit',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core', # python-weboob-core
|
||||
# not Pypi packages:
|
||||
# Depends
|
||||
# python-gtk2
|
||||
# python-webkit
|
||||
],
|
||||
)
|
||||
93
tools/packaging/setup.py.d/core.py
Executable file
93
tools/packaging/setup.py.d/core.py
Executable file
|
|
@ -0,0 +1,93 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# 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=readme_data,
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org',
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Environment :: Web Environment',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GNU General Public License (GPL)',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Internet',
|
||||
],
|
||||
# keywords='',
|
||||
namespace_packages = [
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.tools',
|
||||
'weboob.tools.application',
|
||||
],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.weboobcfg',
|
||||
'weboob.applications.weboobdebug',
|
||||
'weboob.applications.weboobtests',
|
||||
'weboob.capabilities',
|
||||
'weboob.core',
|
||||
'weboob.tools',
|
||||
'weboob.tools.application',
|
||||
'weboob.tools.application.formatters',
|
||||
'weboob.tools.browser',
|
||||
'weboob.tools.config',
|
||||
'weboob.tools.parsers',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/weboob-config',
|
||||
# 'scripts/weboob-debug',
|
||||
# 'scripts/weboob-tests',
|
||||
],
|
||||
install_requires=[
|
||||
'elementtidy', # python-elementtidy
|
||||
'lxml', # python-lxml
|
||||
'mechanize', # python-mechanize
|
||||
'python-dateutil', # python-dateutil
|
||||
'PyYAML', # python-yaml
|
||||
],
|
||||
# package name / Debian package name
|
||||
#
|
||||
# Recommends
|
||||
# html2text / python-html2text
|
||||
# PrettyTable / python-prettytable
|
||||
#
|
||||
# Suggests
|
||||
# ClientForm / python-clientform
|
||||
# ipython / ipython
|
||||
# nose / python-nose
|
||||
# pysqlite / python-pysqlite2
|
||||
)
|
||||
46
tools/packaging/setup.py.d/havesex.py
Executable file
46
tools/packaging/setup.py.d/havesex.py
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-havesex',
|
||||
version='0.1',
|
||||
description='HaveSex, the Weboob sexual life swiss-knife',
|
||||
long_description='Optimize your probabilities to have sex on dating websites',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/HaveSex',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.havesex',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/havesex',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-dating', # python-weboob-backends-dating
|
||||
],
|
||||
)
|
||||
49
tools/packaging/setup.py.d/masstransit.py
Executable file
49
tools/packaging/setup.py.d/masstransit.py
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-masstransit',
|
||||
version='0.1',
|
||||
description='Masstransit, the Weboob travel swiss-knife, Hildon version (Maemo OS)',
|
||||
long_description='Search for train stations and departure timegrids',
|
||||
author='Julien Hébert',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Masstransit',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.masstransit',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/masstransit',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-travel', # python-weboob-backends-travel
|
||||
# python-gtk
|
||||
# python-conic, on Maemo
|
||||
# python-hildon, on Maemo
|
||||
],
|
||||
)
|
||||
45
tools/packaging/setup.py.d/monboob.py
Executable file
45
tools/packaging/setup.py.d/monboob.py
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-monboob',
|
||||
version='0.1',
|
||||
description='Monboob, the Weboob e-mail swiss-knife',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Monboob',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.monboob',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/monboob',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-messages', # python-weboob-backends-messages
|
||||
],
|
||||
)
|
||||
51
tools/packaging/setup.py.d/qboobmsg.py
Executable file
51
tools/packaging/setup.py.d/qboobmsg.py
Executable file
|
|
@ -0,0 +1,51 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
import os
|
||||
|
||||
|
||||
os.system('make -C weboob/applications/qboobmsg/ui')
|
||||
|
||||
setup(
|
||||
name='weboob-qboobmsg',
|
||||
version='0.1',
|
||||
description='QBoobMsg, the Weboob e-mail swiss-knife, Qt version',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/QBoobMsg',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.qboobmsg',
|
||||
'weboob.applications.qboobmsg.ui',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/qboobmsg',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core-qt', # python-weboob-core-qt
|
||||
'weboob-backends-messages', # python-weboob-backends-messages
|
||||
],
|
||||
)
|
||||
52
tools/packaging/setup.py.d/qhavesex.py
Executable file
52
tools/packaging/setup.py.d/qhavesex.py
Executable file
|
|
@ -0,0 +1,52 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
import os
|
||||
|
||||
|
||||
os.system('make -C weboob/applications/qhavesex/ui')
|
||||
|
||||
setup(
|
||||
name='weboob-qhavesex',
|
||||
version='0.1',
|
||||
description='QHaveSex, the Weboob sexual life swiss-knife, Qt version',
|
||||
long_description='Optimize your probabilities to have sex on dating websites',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/QHaveSex',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.qhavesex',
|
||||
'weboob.applications.qhavesex.ui',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/qhavesex',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core-qt', # python-weboob-core-qt
|
||||
'weboob-backends-dating', # python-weboob-backends-dating
|
||||
],
|
||||
)
|
||||
53
tools/packaging/setup.py.d/qvideoob.py
Executable file
53
tools/packaging/setup.py.d/qvideoob.py
Executable file
|
|
@ -0,0 +1,53 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
import os
|
||||
|
||||
|
||||
os.system('make -C weboob/applications/qvideoob/ui')
|
||||
|
||||
setup(
|
||||
name='weboob-qvideoob',
|
||||
version='0.1',
|
||||
description='QVideoob, the Weboob video swiss-knife, Qt version',
|
||||
long_description='Search for videos on many websites, and get info about them',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/QVideoob',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.qvideoob',
|
||||
'weboob.applications.qvideoob.ui',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/qvideoob',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core-qt', # python-weboob-core-qt
|
||||
'weboob-backends-video', # python-weboob-backends-video
|
||||
# python-qt4-phonon
|
||||
],
|
||||
)
|
||||
46
tools/packaging/setup.py.d/travel.py
Executable file
46
tools/packaging/setup.py.d/travel.py
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-travel',
|
||||
version='0.1',
|
||||
description='The Weboob travel swiss-knife',
|
||||
long_description='Search for train stations and departure timegrids',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Travel',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.travel',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/travel',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-travel', # python-weboob-backends-travel
|
||||
],
|
||||
)
|
||||
46
tools/packaging/setup.py.d/videoob.py
Executable file
46
tools/packaging/setup.py.d/videoob.py
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-videoob',
|
||||
version='0.1',
|
||||
description='Videoob, the Weboob video swiss-knife',
|
||||
long_description='Search for videos on many websites, and get info about them',
|
||||
author='Christophe Benz',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Videoob',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.videoob',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/videoob',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-video', # python-weboob-backends-video
|
||||
],
|
||||
)
|
||||
51
tools/packaging/setup.py.d/videoob_web.py
Executable file
51
tools/packaging/setup.py.d/videoob_web.py
Executable file
|
|
@ -0,0 +1,51 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-videoob-web',
|
||||
version='0.1',
|
||||
description='Videoob-web, the Weboob video swiss-knife, web server version',
|
||||
long_description='Search for videos on many websites, and get info about them',
|
||||
author='Christophe Benz',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/VideoobWeb',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.videoob_web',
|
||||
'weboob.applications.videoob_web.public',
|
||||
'weboob.applications.videoob_web.templates',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/videoob-web-server',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-video', # python-weboob-backends-video
|
||||
'Mako', # python-mako
|
||||
'Routes', # python-routes
|
||||
'WebOb', # python-webob
|
||||
],
|
||||
)
|
||||
46
tools/packaging/setup.py.d/weboorrents.py
Executable file
46
tools/packaging/setup.py.d/weboorrents.py
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-weboorrents',
|
||||
version='0.1',
|
||||
description='Weboorrents, the Weboob bittorrent swiss-knife',
|
||||
long_description='Search for torrents on many websites, and get info about them',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Weboorrents',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.weboorrents',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/weboorrents',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-torrent', # python-weboob-backends-torrent
|
||||
],
|
||||
)
|
||||
45
tools/packaging/setup.py.d/wetboobs.py
Executable file
45
tools/packaging/setup.py.d/wetboobs.py
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Christophe Benz
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-wetboobs',
|
||||
version='0.1',
|
||||
description='Wetboobs, the Weboob weather forecast swiss-knife',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
maintainer='Christophe Benz',
|
||||
maintainer_email='christophe.benz@gmail.com',
|
||||
license='GPLv3',
|
||||
url='http://www.weboob.org/Wetboobs',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.wetboobs',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/wetboobs',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-backends-weather', # python-weboob-backends-weather
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue