deluge/setup.cfg
Calum Lind 5167e93d12 Flake8 core and common files
* Added N802 to flake8 ignore as certain inherited funcs cannot be changed
   to lowercase and this unresolved warning hides other errors/warnings.
 * Include new header
2014-09-03 23:48:34 +01:00

21 lines
522 B
INI

[build_docs]
source-dir = docs/source
build-dir = docs/build
all_files = 1
[py2app]
app = ['deluge/main.py']
#arch = x86_64
arch = i386
iconfile = osx/deluge.icns
site-packages = false
includes = glib, gio, cairo, pango, pangocairo, atk, gobject, gtk.keysyms,
twisted.internet, twisted.internet.utils, twisted.protocols,
zope.interface, mako.cache, email.mime, libtorrent, gtkosx_application
frameworks = CoreFoundation, Foundation, AppKit
[flake8]
max-line-length = 120
builtins = _
ignore = N802