diff --git a/README.md b/README.md index 2b28cb3a17de1de68e539eca80d39a3b711f09c4..7353bac36277edc46935ced608c3bdc883af0017 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 69fb0fb6fbae05b4972697cc07f14c78de728aa2..f143b1c0ebd602669fcce70643613a8c71ed5af5 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 54bf4ab228ca11a8deb5a1a0987f27829dee1b39..98925756e58d74bc423b1ce58cf1f09cb4a73467 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)), ])