From 83e59081a4d30194d4d3eeb87c73a2067b7070c4 Mon Sep 17 00:00:00 2001 From: Vincent A Date: Sun, 7 Apr 2019 15:03:43 +0200 Subject: [PATCH] setup.py: remove "scripts", use "entry_points" "scripts" folder contain files that can be easily generated by setuptools since they are merely wrappers to weboob.applications.*. The whole "scripts" is removed. It will require weboob developers not to simply point their PATH to the scripts dir. --- scripts/boobank | 27 --------------- scripts/boobathon | 28 --------------- scripts/boobcoming | 26 -------------- scripts/boobill | 28 --------------- scripts/booblyrics | 28 --------------- scripts/boobmsg | 28 --------------- scripts/boobooks | 28 --------------- scripts/boobsize | 28 --------------- scripts/boobtracker | 26 -------------- scripts/boomoney | 27 --------------- scripts/cineoob | 28 --------------- scripts/comparoob | 10 ------ scripts/cookboob | 28 --------------- scripts/flatboob | 28 --------------- scripts/galleroob | 26 -------------- scripts/geolooc | 28 --------------- scripts/handjoob | 27 --------------- scripts/havedate | 28 --------------- scripts/monboob | 28 --------------- scripts/parceloob | 28 --------------- scripts/pastoob | 28 --------------- scripts/qbooblyrics | 28 --------------- scripts/qboobmsg | 28 --------------- scripts/qboobtracker | 28 --------------- scripts/qcineoob | 28 --------------- scripts/qcookboob | 28 --------------- scripts/qflatboob | 28 --------------- scripts/qgalleroob | 27 --------------- scripts/qhandjoob | 28 --------------- scripts/qhavedate | 28 --------------- scripts/qvideoob | 28 --------------- scripts/qwebcontentedit | 28 --------------- scripts/radioob | 28 --------------- scripts/shopoob | 28 --------------- scripts/suboob | 28 --------------- scripts/translaboob | 27 --------------- scripts/traveloob | 28 --------------- scripts/videoob | 28 --------------- scripts/webcontentedit | 28 --------------- scripts/weboob-cli | 28 --------------- scripts/weboob-config | 28 --------------- scripts/weboob-config-qt | 28 --------------- scripts/weboob-debug | 28 --------------- scripts/weboob-repos | 28 --------------- scripts/weboorrents | 28 --------------- scripts/wetboobs | 28 --------------- setup.py | 74 ++++++++++++++++++++++++++++++---------- 47 files changed, 56 insertions(+), 1277 deletions(-) delete mode 100755 scripts/boobank delete mode 100755 scripts/boobathon delete mode 100755 scripts/boobcoming delete mode 100755 scripts/boobill delete mode 100755 scripts/booblyrics delete mode 100755 scripts/boobmsg delete mode 100755 scripts/boobooks delete mode 100755 scripts/boobsize delete mode 100755 scripts/boobtracker delete mode 100755 scripts/boomoney delete mode 100755 scripts/cineoob delete mode 100755 scripts/comparoob delete mode 100755 scripts/cookboob delete mode 100755 scripts/flatboob delete mode 100755 scripts/galleroob delete mode 100755 scripts/geolooc delete mode 100755 scripts/handjoob delete mode 100755 scripts/havedate delete mode 100755 scripts/monboob delete mode 100755 scripts/parceloob delete mode 100755 scripts/pastoob delete mode 100755 scripts/qbooblyrics delete mode 100755 scripts/qboobmsg delete mode 100755 scripts/qboobtracker delete mode 100755 scripts/qcineoob delete mode 100755 scripts/qcookboob delete mode 100755 scripts/qflatboob delete mode 100755 scripts/qgalleroob delete mode 100755 scripts/qhandjoob delete mode 100755 scripts/qhavedate delete mode 100755 scripts/qvideoob delete mode 100755 scripts/qwebcontentedit delete mode 100755 scripts/radioob delete mode 100755 scripts/shopoob delete mode 100755 scripts/suboob delete mode 100755 scripts/translaboob delete mode 100755 scripts/traveloob delete mode 100755 scripts/videoob delete mode 100755 scripts/webcontentedit delete mode 100755 scripts/weboob-cli delete mode 100755 scripts/weboob-config delete mode 100755 scripts/weboob-config-qt delete mode 100755 scripts/weboob-debug delete mode 100755 scripts/weboob-repos delete mode 100755 scripts/weboorrents delete mode 100755 scripts/wetboobs diff --git a/scripts/boobank b/scripts/boobank deleted file mode 100755 index d31a8832ae..0000000000 --- a/scripts/boobank +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2009-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - -from __future__ import absolute_import -from weboob.applications.boobank import Boobank - - -if __name__ == '__main__': - Boobank.run() diff --git a/scripts/boobathon b/scripts/boobathon deleted file mode 100755 index 893d4f09af..0000000000 --- a/scripts/boobathon +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.boobathon import Boobathon - - -if __name__ == '__main__': - Boobathon.run() diff --git a/scripts/boobcoming b/scripts/boobcoming deleted file mode 100755 index af798e2b7c..0000000000 --- a/scripts/boobcoming +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -# Copyright(C) 2013 Bezleputh -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.boobcoming import Boobcoming - -if __name__ == '__main__': - Boobcoming.run() diff --git a/scripts/boobill b/scripts/boobill deleted file mode 100755 index 1872e3cfd2..0000000000 --- a/scripts/boobill +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2012 Fourcot Florent -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.boobill import Boobill - - -if __name__ == '__main__': - Boobill.run() diff --git a/scripts/booblyrics b/scripts/booblyrics deleted file mode 100755 index 9821c83d28..0000000000 --- a/scripts/booblyrics +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Julien Veyssier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.booblyrics import Booblyrics - - -if __name__ == '__main__': - Booblyrics.run() diff --git a/scripts/boobmsg b/scripts/boobmsg deleted file mode 100755 index ca2357f6d6..0000000000 --- a/scripts/boobmsg +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Christophe Benz -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.boobmsg import Boobmsg - - -if __name__ == '__main__': - Boobmsg.run() diff --git a/scripts/boobooks b/scripts/boobooks deleted file mode 100755 index eb457feb67..0000000000 --- a/scripts/boobooks +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2012 Jeremy Monnet -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.boobooks import Boobooks - - -if __name__ == '__main__': - Boobooks.run() diff --git a/scripts/boobsize b/scripts/boobsize deleted file mode 100755 index 3eebd6cf06..0000000000 --- a/scripts/boobsize +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Florent Fourcot -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.boobsize import Boobsize - - -if __name__ == '__main__': - Boobsize.run() diff --git a/scripts/boobtracker b/scripts/boobtracker deleted file mode 100755 index 5f90d5788e..0000000000 --- a/scripts/boobtracker +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -# Copyright(C) 2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - -from __future__ import absolute_import -from weboob.applications.boobtracker import BoobTracker - - -if __name__ == '__main__': - BoobTracker.run() diff --git a/scripts/boomoney b/scripts/boomoney deleted file mode 100755 index 85d052bb09..0000000000 --- a/scripts/boomoney +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Written by Bruno Chabrier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - -from __future__ import absolute_import -from weboob.applications.boomoney import Boomoney - - -if __name__ == '__main__': - Boomoney.run() diff --git a/scripts/cineoob b/scripts/cineoob deleted file mode 100755 index 14440fec09..0000000000 --- a/scripts/cineoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Julien Veyssier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.cineoob import Cineoob - - -if __name__ == '__main__': - Cineoob.run() diff --git a/scripts/comparoob b/scripts/comparoob deleted file mode 100755 index 9dc83ea8dd..0000000000 --- a/scripts/comparoob +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -from __future__ import absolute_import -from weboob.applications.comparoob import Comparoob - - -if __name__ == '__main__': - Comparoob.run() diff --git a/scripts/cookboob b/scripts/cookboob deleted file mode 100755 index 852aa6b40e..0000000000 --- a/scripts/cookboob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Julien Veyssier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.cookboob import Cookboob - - -if __name__ == '__main__': - Cookboob.run() diff --git a/scripts/flatboob b/scripts/flatboob deleted file mode 100755 index 54a1f92919..0000000000 --- a/scripts/flatboob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2012 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.flatboob import Flatboob - - -if __name__ == '__main__': - Flatboob.run() diff --git a/scripts/galleroob b/scripts/galleroob deleted file mode 100755 index bbf20864b9..0000000000 --- a/scripts/galleroob +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -# Copyright(C) 2010-2011 Noé Rubinstein -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - -from __future__ import absolute_import -from weboob.applications.galleroob import Galleroob - - -if __name__ == '__main__': - Galleroob.run() diff --git a/scripts/geolooc b/scripts/geolooc deleted file mode 100755 index cd89e15bb8..0000000000 --- a/scripts/geolooc +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.geolooc import Geolooc - - -if __name__ == '__main__': - Geolooc.run() diff --git a/scripts/handjoob b/scripts/handjoob deleted file mode 100755 index ded0e665ed..0000000000 --- a/scripts/handjoob +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -# Copyright(C) 2013 Bezleputh -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.handjoob import Handjoob - - -if __name__ == '__main__': - Handjoob.run() diff --git a/scripts/havedate b/scripts/havedate deleted file mode 100755 index 310c6c9a96..0000000000 --- a/scripts/havedate +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.havedate import HaveDate - - -if __name__ == '__main__': - HaveDate.run() diff --git a/scripts/monboob b/scripts/monboob deleted file mode 100755 index b7de85e326..0000000000 --- a/scripts/monboob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.monboob import Monboob - - -if __name__ == '__main__': - Monboob.run() diff --git a/scripts/parceloob b/scripts/parceloob deleted file mode 100755 index cdd8217bac..0000000000 --- a/scripts/parceloob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.parceloob import Parceloob - - -if __name__ == '__main__': - Parceloob.run() diff --git a/scripts/pastoob b/scripts/pastoob deleted file mode 100755 index d5f30aa2ce..0000000000 --- a/scripts/pastoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2011 Laurent Bachelier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.pastoob import Pastoob - - -if __name__ == '__main__': - Pastoob.run() diff --git a/scripts/qbooblyrics b/scripts/qbooblyrics deleted file mode 100755 index c1660fe89d..0000000000 --- a/scripts/qbooblyrics +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2016 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qbooblyrics import QBooblyrics - - -if __name__ == '__main__': - QBooblyrics.run() diff --git a/scripts/qboobmsg b/scripts/qboobmsg deleted file mode 100755 index 23a5f0009e..0000000000 --- a/scripts/qboobmsg +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qboobmsg import QBoobMsg - - -if __name__ == '__main__': - QBoobMsg.run() diff --git a/scripts/qboobtracker b/scripts/qboobtracker deleted file mode 100755 index 6542eab001..0000000000 --- a/scripts/qboobtracker +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2012 Sébastien Monel -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qboobtracker import QBoobTracker - - -if __name__ == '__main__': - QBoobTracker.run() diff --git a/scripts/qcineoob b/scripts/qcineoob deleted file mode 100755 index 3721de9365..0000000000 --- a/scripts/qcineoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Julien Veyssier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qcineoob import QCineoob - - -if __name__ == '__main__': - QCineoob.run() diff --git a/scripts/qcookboob b/scripts/qcookboob deleted file mode 100755 index e5a1168951..0000000000 --- a/scripts/qcookboob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Julien Veyssier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qcookboob import QCookboob - - -if __name__ == '__main__': - QCookboob.run() diff --git a/scripts/qflatboob b/scripts/qflatboob deleted file mode 100755 index 793c7edbee..0000000000 --- a/scripts/qflatboob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2012 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qflatboob import QFlatBoob - - -if __name__ == '__main__': - QFlatBoob.run() diff --git a/scripts/qgalleroob b/scripts/qgalleroob deleted file mode 100755 index 395b45ceb4..0000000000 --- a/scripts/qgalleroob +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2016 weboob project -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from weboob.applications.qgalleroob import QGalleroob - - -if __name__ == '__main__': - QGalleroob.run() diff --git a/scripts/qhandjoob b/scripts/qhandjoob deleted file mode 100755 index 4b3a5a663a..0000000000 --- a/scripts/qhandjoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2012 Sébastien Monel -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qhandjoob import QHandJoob - - -if __name__ == '__main__': - QHandJoob.run() diff --git a/scripts/qhavedate b/scripts/qhavedate deleted file mode 100755 index 81e0a4731c..0000000000 --- a/scripts/qhavedate +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qhavedate import QHaveDate - - -if __name__ == '__main__': - QHaveDate.run() diff --git a/scripts/qvideoob b/scripts/qvideoob deleted file mode 100755 index 400bb17d44..0000000000 --- a/scripts/qvideoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qvideoob import QVideoob - - -if __name__ == '__main__': - QVideoob.run() diff --git a/scripts/qwebcontentedit b/scripts/qwebcontentedit deleted file mode 100755 index 6154a73518..0000000000 --- a/scripts/qwebcontentedit +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qwebcontentedit import QWebContentEdit - - -if __name__ == '__main__': - QWebContentEdit.run() diff --git a/scripts/radioob b/scripts/radioob deleted file mode 100755 index 02e454baa1..0000000000 --- a/scripts/radioob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.radioob import Radioob - - -if __name__ == '__main__': - Radioob.run() diff --git a/scripts/shopoob b/scripts/shopoob deleted file mode 100755 index b7510ff1a4..0000000000 --- a/scripts/shopoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2015 Christophe Lampin -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.shopoob import Shopoob - - -if __name__ == '__main__': - Shopoob.run() diff --git a/scripts/suboob b/scripts/suboob deleted file mode 100755 index 131c8a5f6e..0000000000 --- a/scripts/suboob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2013 Julien Veyssier -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.suboob import Suboob - - -if __name__ == '__main__': - Suboob.run() diff --git a/scripts/translaboob b/scripts/translaboob deleted file mode 100755 index 10266d9637..0000000000 --- a/scripts/translaboob +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -# Copyright(C) 2012 Lucien Loiseau -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.translaboob import Translaboob - - -if __name__ == '__main__': - Translaboob.run() diff --git a/scripts/traveloob b/scripts/traveloob deleted file mode 100755 index 49d6117f54..0000000000 --- a/scripts/traveloob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.traveloob import Traveloob - - -if __name__ == '__main__': - Traveloob.run() diff --git a/scripts/videoob b/scripts/videoob deleted file mode 100755 index 97e3f8dd9d..0000000000 --- a/scripts/videoob +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Christophe Benz -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.videoob import Videoob - - -if __name__ == '__main__': - Videoob.run() diff --git a/scripts/webcontentedit b/scripts/webcontentedit deleted file mode 100755 index cb4e860da5..0000000000 --- a/scripts/webcontentedit +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.webcontentedit import WebContentEdit - - -if __name__ == '__main__': - WebContentEdit.run() diff --git a/scripts/weboob-cli b/scripts/weboob-cli deleted file mode 100755 index aa8c5dca9f..0000000000 --- a/scripts/weboob-cli +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.weboobcli import WeboobCli - - -if __name__ == '__main__': - WeboobCli.run() diff --git a/scripts/weboob-config b/scripts/weboob-config deleted file mode 100755 index 6840965e44..0000000000 --- a/scripts/weboob-config +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.weboobcfg import WeboobCfg - - -if __name__ == '__main__': - WeboobCfg.run() diff --git a/scripts/weboob-config-qt b/scripts/weboob-config-qt deleted file mode 100755 index d9e0604e85..0000000000 --- a/scripts/weboob-config-qt +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.qweboobcfg import QWeboobCfg - - -if __name__ == '__main__': - QWeboobCfg.run() diff --git a/scripts/weboob-debug b/scripts/weboob-debug deleted file mode 100755 index a1d554cecc..0000000000 --- a/scripts/weboob-debug +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Christophe Benz -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.weboobdebug import WeboobDebug - - -if __name__ == '__main__': - WeboobDebug.run() diff --git a/scripts/weboob-repos b/scripts/weboob-repos deleted file mode 100755 index 02e775c035..0000000000 --- a/scripts/weboob-repos +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2012 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.weboobrepos import WeboobRepos - - -if __name__ == '__main__': - WeboobRepos.run() diff --git a/scripts/weboorrents b/scripts/weboorrents deleted file mode 100755 index 790c37351d..0000000000 --- a/scripts/weboorrents +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.weboorrents import Weboorrents - - -if __name__ == '__main__': - Weboorrents.run() diff --git a/scripts/wetboobs b/scripts/wetboobs deleted file mode 100755 index 3a32b0f2ed..0000000000 --- a/scripts/wetboobs +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai - -# Copyright(C) 2010-2011 Romain Bignon -# -# This file is part of weboob. -# -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# weboob 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with weboob. If not, see . - - -from __future__ import absolute_import -from weboob.applications.wetboobs import WetBoobs - - -if __name__ == '__main__': - WetBoobs.run() diff --git a/setup.py b/setup.py index 55158293e7..070d28948f 100755 --- a/setup.py +++ b/setup.py @@ -83,24 +83,47 @@ def find_executable(name, names): def install_weboob(qt, xdg): - scripts = set(os.listdir('scripts')) packages = set(find_packages(exclude=['modules', 'modules.*'])) - qt_scripts = set(('qboobmsg', - 'qhavedate', - 'qgalleroob', - 'qboobtracker', - 'qvideoob', - 'weboob-config-qt', - 'qwebcontentedit', - 'qflatboob', - 'qcineoob', - 'qcookboob', - 'qbooblyrics', - 'qhandjoob')) - - if not qt: - scripts = scripts - qt_scripts + entry_points = { + 'console_scripts': [ + 'boobank = weboob.applications.boobank:Boobank.run', + 'boobathon = weboob.applications.boobathon:Boobathon.run', + 'boobcoming = weboob.applications.boobill:Boobcoming.run', + 'boobill = weboob.applications.boobank:Boobill.run', + 'booblyrics = weboob.applications.booblyrics:Booblyrics.run', + 'boobmsg = weboob.applications.boobmsg:Boobmsg.run', + 'boobooks = weboob.applications.boobooks:Boobooks.run', + 'boobsize = weboob.applications.boobsize:Boobsize.run', + 'boobtracker = weboob.applications.boobtracker:BoobTracker.run', + 'boomoney = weboob.applications.boomoney:Boomoney.run', + 'cineoob = weboob.applications.cineoob:Cineoob.run', + 'comparoob = weboob.applications.comparoob:Comparoob.run', + 'cookboob = weboob.applications.cookboob:Cookboob.run', + 'flatboob = weboob.applications.flatboob:Flatboob.run', + 'galleroob = weboob.applications.galleroob:Galleroob.run', + 'geolooc = weboob.applications.geolooc:Geolooc.run', + 'handjoob = weboob.applications.handjoob:Handjoob.run', + 'havedate = weboob.applications.havedate:HaveDate.run', + 'monboob = weboob.applications.monboob:Monboob.run', + 'parceloob = weboob.applications.parceloob:Parceloob.run', + 'pastoob = weboob.applications.pastoob:Pastoob.run', + 'radioob = weboob.applications.radioob:Radioob.run', + 'shopoob = weboob.applications.shopoob:Shopoob.run', + 'suboob = weboob.applications.suboob:Suboob.run', + 'translaboob = weboob.applications.translaboob:Translaboob.run', + 'traveloob = weboob.applications.traveloob:Traveloob.run', + 'videoob = weboob.applications.videoob:Videoob.run', + 'webcontentedit = weboob.applications.webcontentedit:WebContentEdit.run', + 'weboob-cli = weboob.applications.weboobcli:WeboobCli.run', + 'weboob-config = weboob.applications.weboobcfg:WeboobCfg.run', + 'weboob-debug = weboob.applications.weboobdebug:WeboobDebug.run', + 'weboob-repos = weboob.applications.weboobrepos:WeboobRepos.run', + 'weboorrents = weboob.applications.weboorrents:Weboorrents.run', + 'wetboobs = weboob.applications.wetboobs:WetBoobs.run', + 'weboob = weboob.applications.weboobmain:WeboobMain.run', + ], + } qt_packages = set(( 'weboob.applications.qboobmsg', @@ -129,7 +152,22 @@ def install_weboob(qt, xdg): 'weboob.applications.qgalleroob.ui', )) - if not qt: + if qt: + entry_points['gui_scripts'] = [ + 'qbooblyrics = weboob.applications.qbooblyrics:QBooblyrics.run', + 'qboobmsg = weboob.applications.qboobmsg:QBoobMsg.run', + 'qboobtracker = weboob.applications.qboobtracker:QBoobTracker.run', + 'qcineoob = weboob.applications.qcineoob:QCineoob.run', + 'qcookboob = weboob.applications.qcookboob:QCookboob.run', + 'qflatboob = weboob.applications.qflatboob:QFlatBoob.run', + 'qgalleroob = weboob.applications.qgalleroob:QGalleroob.run', + 'qhandjoob = weboob.applications.qhandjoob:QHandJoob.run', + 'qhavedate = weboob.applications.qhavedate:QHaveDate.run', + 'qvideoob = weboob.applications.qvideoob:QVideoob.run', + 'qwebcontentedit = weboob.applications.qwebcontentedit:QWebContentEdit.run', + 'weboob-config-qt = weboob.applications.qweboobcfg:QWeboobCfg.run', + ] + else: packages = packages - qt_packages data_files = [ @@ -193,7 +231,7 @@ def install_weboob(qt, xdg): ], packages=packages, - scripts=[os.path.join('scripts', script) for script in scripts], + entry_points=entry_points, data_files=data_files, install_requires=requirements, -- GitLab