forked from beeware/toga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
87 lines (84 loc) · 2.05 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = toga
description = A Python native, OS native GUI toolkit.
url = https://beeware.org/project/projects/libraries/toga/
project_urls =
Funding = https://beeware.org/contributing/membership/
Documentation = http://toga.readthedocs.io/en/latest/
Tracker = https://github.com/beeware/toga/issues
Source = https://github.com/beeware/toga
author = Russell Keith-Magee
author_email = russell@keith-magee.com
maintainer = BeeWare Team
maintainer_email = team@beeware.org
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Software Development :: User Interfaces
Topic :: Software Development :: Widget Sets
license = New BSD
license_file = LICENSE
long-description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
keywords =
gui
widget
cross-platform
desktop
mobile
web
macOS
cocoa
iOS
android
windows
winforms
linux
gtk
django
[options]
zip_safe = False
python_requires = >= 3.6
[flake8]
# https://flake8.readthedocs.org/en/latest/
exclude=\
*/.eggs/*,\
*/build/*,\
*/node_modules/*,\
.tox/*,\
attic/*,\
docs/*,\
local/*,\
nursery/*,\
examples/.template,\
examples/*/android,\
examples/*/linux,\
examples/*/macOS,\
examples/*/iOS,\
examples/*/windows,\
venv*
max-complexity = 25
max-line-length = 119
[isort]
skip =
.tox,\
attic,\
docs/conf.py,\
examples/.template,\
local,\
nursery,\
src/gtk/toga_gtk/libs/gtk.py,\
src/winforms/toga_winforms/libs/winforms.py,\
venv
multi_line_output = 3
include_trailing_comma = true