diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-19 14:52:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-19 14:52:21 +0000 |
commit | d1772d410235592b482e3b08b1863f6624d9fe6b (patch) | |
tree | accfb4b99c32e5e435089f8023d62e67a6951603 /setup.cfg | |
parent | Initial commit. (diff) | |
download | deluge-d1772d410235592b482e3b08b1863f6624d9fe6b.tar.xz deluge-d1772d410235592b482e3b08b1863f6624d9fe6b.zip |
Adding upstream version 2.0.3.upstream/2.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | setup.cfg | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..ad212e6 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,52 @@ +[sdist] +formats = gztar, xztar + +[build_docs] +source-dir = docs/source +build-dir = docs/build +all_files = true +fresh-env = true + +[py2app] +app = ['deluge/ui/ui_entry.py'] +arch = x86_64 +iconfile = packaging/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, + HTMLParser +frameworks = CoreFoundation, Foundation, AppKit + +[isort] +known_standard_library = future_builtins +known_third_party = + cairo, gi, + twisted, OpenSSL, pytest, recommonmark, chardet, pkg_resources, zope, mock, + sphinx, rencode, six, mako +known_first_party = msgfmt, deluge +order_by_type = true +not_skip = __init__.py +multi_line_output = 3 +include_trailing_comma = True +force_grid_wrap = 0 +line_length = 88 +use_parentheses = True + +[flake8] +max-line-length = 120 +builtins = _,_n,__request__ +exclude = .git,.tox,.eggs,dist,build +ignore = + A003, + C813,C815,C816, + W503, + E203 + +[pycodestyle] +max-line-length = 88 + +[egg_info] +tag_build = +tag_date = 0 + |