summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2016-11-25 11:46:36 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2016-11-25 12:43:50 +0000
commit874249655ddd8f369cc074e064aa6f58911a4ea6 (patch)
tree02cc0f46f6f6321d1cf7a481cfd1d95125741847 /setup.cfg
parent7ebd69218fe6b089b609a44824a986800982da0a (diff)
downloaddeluge-874249655ddd8f369cc074e064aa6f58911a4ea6.tar.gz
deluge-874249655ddd8f369cc074e064aa6f58911a4ea6.tar.bz2
deluge-874249655ddd8f369cc074e064aa6f58911a4ea6.zip
[Tests] Replace isort test with flake8-isort
* Move the known_third_party back to setup.cfg with comments.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg7
1 files changed, 5 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 46d52025e..b7924ac3d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,8 +16,11 @@ frameworks = CoreFoundation, Foundation, AppKit
[isort]
known_standard_library = future_builtins
-# Ignore Windows specific modules
-known_third_party = bbfreeze, win32verstamp
+known_third_party =
+# Ignore Windows specific modules.
+ bbfreeze, win32verstamp,
+# Ignore gtk modules, primarily for tox testing.
+ pygtk, gtk, gobject, gtk.gdk, pango, cairo, pangocairo
known_first_party = msgfmt, deluge
order_by_type = true
line_length = 120