-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.99 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wxviews"
description = "Package for creating wx applications in declarative way."
keywords = ['binding', 'wxviews', 'wxpython', 'pyviews', 'python', 'mvvm', 'wx']
version = "0.8.0"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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"
]
dependencies = [
'pyviews==4.*',
'wxPython'
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["wxviews*"]
exclude = ["*tests*"]
[project.urls]
Homepage = "https://github.com/eumis/wxviews"
[tool.pylint.main]
disable = ["too-few-public-methods", "missing-class-docstring", "missing-function-docstring", "missing-module-docstring", "invalid-name", "abstract-class-instantiated"]
max-line-length = 120
extension-pkg-whitelist = ['wx']
[tool.pytest.ini_options]
python_files = '*_tests.py'
python_classes = '*Tests'
[tool.yapf]
ALLOW_SPLIT_BEFORE_DICT_VALUE = true
BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = true
BLANK_LINES_AROUND_TOP_LEVEL_DEFINITION = 2
COALESCE_BRACKETS = true
COLUMN_LIMIT = 120
DEDENT_CLOSING_BRACKETS = true
DISABLE_ENDING_COMMA_HEURISTIC = true
EACH_DICT_ENTRY_ON_SEPARATE_LINE = true
INDENT_DICTIONARY_VALUE = true
JOIN_MULTIPLE_LINES = false
SPACES_AROUND_DEFAULT_OR_NAMED_ASSIGN = true
SPACES_BEFORE_COMMENT = 1
SPLIT_ALL_TOP_LEVEL_COMMA_SEPARATED_VALUES = true
SPLIT_ARGUMENTS_WHEN_COMMA_TERMINATED = false
SPLIT_BEFORE_DOT = true
SPLIT_BEFORE_EXPRESSION_AFTER_OPENING_PAREN = true
[tool.isort]
line_length = 120