From 30bdc629f307ec791dd21bc576cf5eec49f8e30a Mon Sep 17 00:00:00 2001 From: Vincent A Date: Sun, 21 Feb 2021 11:19:16 +0100 Subject: [PATCH] setup.cfg: adapt to some new names --- README.md | 16 ++++++++-------- setup.cfg | 10 +++++----- tools/hooks/run-flake8.py | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 2b28cb3a17..7353bac362 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -Weboob -====== +Woob +==== -Weboob is a project which provides a core library, modules and applications. +Woob is a project which provides a core library, modules and applications. ## Overview The core library defines capabilities: features common to various websites. For example, [Youtube](http://www.youtube.com/) and -[Dailymotion](http://www.dailymotion.com/) both provide videos; Weboob defines +[Dailymotion](http://www.dailymotion.com/) both provide videos; Woob defines the `CapVideo` capability for them. Each module interfaces with a website and implements one or many of these @@ -28,19 +28,19 @@ modules and applications. ## Installation -Installation is described on [the website](http://weboob.org) or in the +Installation is described on [the website](http://woob.tech) or in the [INSTALL](INSTALL) file. ## License -Weboob is written in Python and is distributed under the LGPLv3+ license. +Woob is written in Python and is distributed under the LGPLv3+ license. ## Documentation -For more information, please go to [the official website](http://weboob.org/). +For more information, please go to [the official website](http://woob.tech/). Some extra info is available in the [Gitlab wiki](https://git.weboob.org/weboob/devel/wikis/home). If you are a developper and looking for how to write a module or contribute to -Weboob, you can have a look at the [developper documentation](http://dev.weboob.org/). +Woob, you can have a look at the [developper documentation](http://dev.weboob.org/). diff --git a/setup.cfg b/setup.cfg index 69fb0fb6fb..f143b1c0eb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,7 +21,7 @@ tests = weboob.tools.capabilities.bank.iban, weboob.browser.tests.url [isort] -known_first_party = weboob +known_first_party = woob, weboob line_length = 120 [flake8] @@ -44,11 +44,11 @@ group = root universal = 1 [metadata] -name = weboob +name = woob # TODO fetch from __init__.py version = 2.1 -description = Weboob, Web Outside Of Browsers +description = Woob, Web Outside Of Browsers long_description = file:README.md author = Romain Bignon @@ -56,7 +56,7 @@ author_email = weboob@weboob.org maintainer = Romain Bignon maintainer_email = romain@weboob.org -url = https://weboob.org/ +url = https://woob.tech/ license = GNU LGPL 3 classifiers = @@ -101,4 +101,4 @@ tests_require = [options.entry_points] console_scripts = - woob = weboob.applications.main:WoobMain.run + woob = woob.applications.main:WoobMain.run diff --git a/tools/hooks/run-flake8.py b/tools/hooks/run-flake8.py index 54bf4ab228..98925756e5 100755 --- a/tools/hooks/run-flake8.py +++ b/tools/hooks/run-flake8.py @@ -44,7 +44,7 @@ def same_section(previous, current): # But it's a nice visual separator sometimes. main([ '--ignore=E501,W503,E266', - '--application-import-names=weboob', + '--application-import-names=weboob,woob', '--import-order-style=fake_module_all_separate', *map(str, mod['files_to_check'](args)), ]) -- GitLab