summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2018-07-13 09:34:49 +0100
committerCalum Lind <calumlind@gmail.com>2018-11-02 08:45:39 +0000
commit01fafd4fe0a41c53345d55b34ef16f087382ceb1 (patch)
treed2b3bd253b9e917811f6a1a974078db89d7bb4c8 /setup.cfg
parentca0db4d1a72b38f66de5c85ab3f99438c2f8d0e9 (diff)
downloaddeluge-01fafd4fe0a41c53345d55b34ef16f087382ceb1.tar.gz
deluge-01fafd4fe0a41c53345d55b34ef16f087382ceb1.tar.bz2
deluge-01fafd4fe0a41c53345d55b34ef16f087382ceb1.zip
[GTK3] Change module structure from ui/gtkui to ui/gtk3
This moves the directory structure so that there is no conflict with the old gtk2 UI. Also changes the conf and state files being loaded.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 521a15dd2..4f15bcef5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -22,7 +22,7 @@ known_third_party =
# Ignore Windows specific modules.
bbfreeze, win32verstamp,
# Ignore gtk modules, primarily for tox testing.
- pygtk, gtk, gobject, gtk.gdk, pango, cairo, pangocairo,
+ pygtk, gtk, gobject, gtk.gdk, pango, cairo, pangocairo, gi
# Ignore other module dependencies for pre-commit isort.
twisted, OpenSSL, pytest, recommonmark, chardet, pkg_resources, zope, mock,
sphinx
@@ -39,7 +39,7 @@ use_parentheses=True
[flake8]
max-line-length = 120
builtins = _,_n,__request__
-exclude = .git,.tox,dist,build
+exclude = .git,.tox,.eggs,dist,build
ignore =
# A003 Class attribute is a python builtin.
A003,