move setup.py files out of source tree
This commit is contained in:
parent
7d3a889c19
commit
00110189c9
23 changed files with 416 additions and 209 deletions
44
tools/setup.py.d/setup-bank-backends.py
Executable file
44
tools/setup.py.d/setup-bank-backends.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-bank-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing bank capability',
|
||||
author='Laurent Bachelier',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/ICapBank',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.bnporc',
|
||||
'weboob.backends.bnporc.data',
|
||||
'weboob.backends.bnporc.pages',
|
||||
'weboob.backends.cragr',
|
||||
'weboob.backends.cragr.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core',
|
||||
],
|
||||
)
|
||||
46
tools/setup.py.d/setup-boobank.py
Executable file
46
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Boobank',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.boobank',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/boobank',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-bank-backends',
|
||||
],
|
||||
)
|
||||
69
tools/setup.py.d/setup-core.py
Executable file
69
tools/setup.py.d/setup-core.py
Executable file
|
|
@ -0,0 +1,69 @@
|
|||
#! /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
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-core',
|
||||
version='0.1',
|
||||
description='Weboob, Web Out Of Browsers - core library',
|
||||
# long_description=read('README'),
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
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'],
|
||||
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.application.qt',
|
||||
'weboob.tools.browser',
|
||||
'weboob.tools.config',
|
||||
'weboob.tools.parsers',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/qweboobcfg',
|
||||
'scripts/weboobcfg',
|
||||
'scripts/weboob-debug',
|
||||
'scripts/weboob-tests',
|
||||
],
|
||||
install_requires=[
|
||||
],
|
||||
)
|
||||
43
tools/setup.py.d/setup-dating-backends.py
Executable file
43
tools/setup.py.d/setup-dating-backends.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-dating-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing dating capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/ICapDating',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.aum',
|
||||
'weboob.backends.aum.data',
|
||||
'weboob.backends.aum.optim',
|
||||
'weboob.backends.aum.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core',
|
||||
],
|
||||
)
|
||||
46
tools/setup.py.d/setup-havesex.py
Executable file
46
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/HaveSex',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.havesex',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/havesex',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-dating-backends',
|
||||
],
|
||||
)
|
||||
46
tools/setup.py.d/setup-masstransit.py
Executable file
46
tools/setup.py.d/setup-masstransit.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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Masstransit',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.masstransit',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/masstransit',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-travel-backends',
|
||||
],
|
||||
)
|
||||
43
tools/setup.py.d/setup-messages-backends.py
Executable file
43
tools/setup.py.d/setup-messages-backends.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-messages-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing messages capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://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',
|
||||
],
|
||||
)
|
||||
45
tools/setup.py.d/setup-monboob.py
Executable file
45
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-monboob',
|
||||
version='0.1',
|
||||
description='Monboob, the Weboob e-mail swiss-knife',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Monboob',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.monboob',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/monboob',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-messages-backends',
|
||||
],
|
||||
)
|
||||
48
tools/setup.py.d/setup-qboobmsg.py
Executable file
48
tools/setup.py.d/setup-qboobmsg.py
Executable file
|
|
@ -0,0 +1,48 @@
|
|||
#! /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 %s/ui' % os.path.dirname(__file__))
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://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-messages-backends',
|
||||
],
|
||||
)
|
||||
49
tools/setup.py.d/setup-qhavesex.py
Executable file
49
tools/setup.py.d/setup-qhavesex.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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
os.system('make -C %s/ui' % os.path.dirname(__file__))
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://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-dating-backends',
|
||||
],
|
||||
)
|
||||
49
tools/setup.py.d/setup-qvideoob.py
Executable file
49
tools/setup.py.d/setup-qvideoob.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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
os.system('make -C %s/ui' % os.path.dirname(__file__))
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://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-video-backends',
|
||||
],
|
||||
)
|
||||
41
tools/setup.py.d/setup-torrent-backends.py
Executable file
41
tools/setup.py.d/setup-torrent-backends.py
Executable file
|
|
@ -0,0 +1,41 @@
|
|||
#! /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-torrent-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing torrent capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/ICapTorrent',
|
||||
namespace_packages = ['weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.gazelle',
|
||||
'weboob.backends.gazelle.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core',
|
||||
],
|
||||
)
|
||||
42
tools/setup.py.d/setup-travel-backends.py
Executable file
42
tools/setup.py.d/setup-travel-backends.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-travel-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing travel capability',
|
||||
author='Romain Bignon, Julien Hébert',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://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',
|
||||
],
|
||||
)
|
||||
46
tools/setup.py.d/setup-travel.py
Executable file
46
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Travel',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.travel',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/travel',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-travel-backends',
|
||||
],
|
||||
)
|
||||
43
tools/setup.py.d/setup-video-backends.py
Executable file
43
tools/setup.py.d/setup-video-backends.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-video-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing video capability',
|
||||
author='Christophe Benz, Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/ICapVideo',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.ina',
|
||||
'weboob.backends.ina.pages',
|
||||
'weboob.backends.youtube',
|
||||
'weboob.backends.youtube.pages',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core',
|
||||
],
|
||||
)
|
||||
43
tools/setup.py.d/setup-video-nsfw-backends.py
Executable file
43
tools/setup.py.d/setup-video-nsfw-backends.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-video-backends-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',
|
||||
license='GPLv3',
|
||||
url='http://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',
|
||||
],
|
||||
)
|
||||
46
tools/setup.py.d/setup-videoob.py
Executable file
46
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Videoob',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.videoob',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/videoob',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-video-backends',
|
||||
],
|
||||
)
|
||||
48
tools/setup.py.d/setup-videoob_web.py
Executable file
48
tools/setup.py.d/setup-videoob_web.py
Executable file
|
|
@ -0,0 +1,48 @@
|
|||
#! /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
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://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-video-backends',
|
||||
],
|
||||
)
|
||||
40
tools/setup.py.d/setup-weather-backends.py
Executable file
40
tools/setup.py.d/setup-weather-backends.py
Executable file
|
|
@ -0,0 +1,40 @@
|
|||
#! /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-weather-backends',
|
||||
version='0.1',
|
||||
description='Weboob backends implementing weather capability',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/ICapWeather',
|
||||
namespace_packages = ['weboob', 'weboob.backends'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.backends',
|
||||
'weboob.backends.yweather',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-core',
|
||||
],
|
||||
)
|
||||
46
tools/setup.py.d/setup-weboorrents.py
Executable file
46
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
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',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Weboorrents',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.weboorrents',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/weboorrents',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-torrent-backends',
|
||||
],
|
||||
)
|
||||
45
tools/setup.py.d/setup-wetboobs.py
Executable file
45
tools/setup.py.d/setup-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
|
||||
|
||||
import os
|
||||
|
||||
|
||||
setup(
|
||||
name='weboob-wetboobs',
|
||||
version='0.1',
|
||||
description='Wetboobs, the Weboob weather forecast swiss-knife',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@lists.symlink.me',
|
||||
license='GPLv3',
|
||||
url='http://weboob.org/Wetboobs',
|
||||
namespace_packages = ['weboob', 'weboob.applications'],
|
||||
packages=[
|
||||
'weboob',
|
||||
'weboob.applications',
|
||||
'weboob.applications.wetboobs',
|
||||
],
|
||||
scripts=[
|
||||
'scripts/wetboobs',
|
||||
],
|
||||
install_requires=[
|
||||
'weboob-weather-backends',
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue