2019-05-24 10:21:35 +00:00
|
|
|
[sdist]
|
2019-06-07 13:47:02 +00:00
|
|
|
formats=gztar, xztar
|
2019-05-24 10:21:35 +00:00
|
|
|
|
2009-07-22 23:04:48 +00:00
|
|
|
[build_docs]
|
2009-07-20 09:00:47 +00:00
|
|
|
source-dir = docs/source
|
|
|
|
build-dir = docs/build
|
2018-07-28 07:14:25 +00:00
|
|
|
all_files = true
|
|
|
|
fresh-env = true
|
2013-02-14 00:29:14 +00:00
|
|
|
|
2019-06-15 18:44:33 +00:00
|
|
|
[spellcheck_docs]
|
|
|
|
source-dir = docs/source
|
|
|
|
build-dir = docs/build
|
|
|
|
builder = spelling
|
|
|
|
|
2013-02-14 00:29:14 +00:00
|
|
|
[py2app]
|
2017-06-26 22:02:36 +00:00
|
|
|
app = ['deluge/ui/ui_entry.py']
|
2017-06-07 10:22:07 +00:00
|
|
|
arch = x86_64
|
|
|
|
# arch = i386
|
2017-06-26 22:02:36 +00:00
|
|
|
iconfile = packaging/osx/deluge.icns
|
2013-02-14 00:29:14 +00:00
|
|
|
site-packages = false
|
2013-03-17 18:10:51 +00:00
|
|
|
includes = glib, gio, cairo, pango, pangocairo, atk, gobject, gtk.keysyms,
|
|
|
|
twisted.internet, twisted.internet.utils, twisted.protocols,
|
2017-06-26 22:02:36 +00:00
|
|
|
zope.interface, mako.cache, email.mime, libtorrent, gtkosx_application,
|
|
|
|
HTMLParser
|
2013-03-17 18:10:51 +00:00
|
|
|
frameworks = CoreFoundation, Foundation, AppKit
|
2013-05-22 22:33:06 +00:00
|
|
|
|
2018-10-02 14:39:51 +00:00
|
|
|
[flake8]
|
|
|
|
max-line-length = 120
|
|
|
|
builtins = _,_n,__request__
|
2022-02-13 12:31:41 +00:00
|
|
|
extend-exclude = dist,build
|
|
|
|
extend-ignore =
|
|
|
|
# flake8-builtins: A003 class attribute is shadowing a python builtin
|
2018-10-02 14:39:51 +00:00
|
|
|
A003,
|
2022-02-13 12:31:41 +00:00
|
|
|
# E203 whitespace before ':'
|
|
|
|
E203,
|
|
|
|
# N818 pep8-naming: error suffix in exception names
|
|
|
|
N818
|
|
|
|
per-file-ignores =
|
|
|
|
# import not top of file (gi checks required before import)
|
|
|
|
deluge/ui/gtk3/*.py : E402
|
|
|
|
deluge/**/gtkui.py: E402
|
|
|
|
deluge/**/gtkui/*.py: E402
|
|
|
|
deluge/plugins/Stats/deluge_stats/graph.py: E402
|
2018-10-02 14:39:51 +00:00
|
|
|
[pycodestyle]
|
|
|
|
max-line-length = 88
|