102 lines
3.2 KiB
INI
102 lines
3.2 KiB
INI
[global]
|
|
command-packages: stdeb.command
|
|
|
|
[bumpversion]
|
|
current_version = 0.2.2
|
|
commit = True
|
|
tag = True
|
|
tag_name = {new_version}
|
|
message = New release: {current_version} → {new_version}
|
|
|
|
[bumpversion:file:qmk_cli/__init__.py]
|
|
|
|
[bumpversion:file:setup.cfg]
|
|
|
|
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[entry_points]
|
|
qmk = qmk_cli.script_qmk:main
|
|
|
|
[flake8]
|
|
ignore = E501,E226
|
|
|
|
[metadata]
|
|
author = skullydazed
|
|
author-email = skullydazed@gmail.com
|
|
description-file = README.md
|
|
dist-name = qmk
|
|
license_file = LICENSE
|
|
module = qmk_cli
|
|
home-page = https://qmk.fm/
|
|
requires-python = >=3.7
|
|
|
|
[sdist_dsc]
|
|
# Configuration for the Debian package
|
|
with-python2: False
|
|
with-python3: True
|
|
with-dh-virtualenv: True
|
|
sign-results: True
|
|
compat: 10
|
|
suite3: stable
|
|
package3: qmk
|
|
maintainer: QMK Firmware (Official QMK GPG Signing Key) <hello@qmk.fm>
|
|
section: devel
|
|
depends3: build-essential, clang-format, diffutils, gcc, git, unzip, wget, zip, python3-pip, binutils-avr, gcc-avr, avr-libc, binutils-arm-none-eabi, gcc-arm-none-eabi, libnewlib-arm-none-eabi, avrdude, dfu-programmer, dfu-util, teensy-loader-cli, libhidapi-hidraw0, libusb-dev
|
|
depends: build-essential, clang-format, diffutils, gcc, git, unzip, wget, zip, python3-pip, binutils-avr, gcc-avr, avr-libc, binutils-arm-none-eabi, gcc-arm-none-eabi, libnewlib-arm-none-eabi, avrdude, dfu-programmer, dfu-util, teensy-loader-cli, libhidapi-hidraw0, libusb-dev
|
|
x-python3-version: >= 3.7
|
|
udev-rules: debian/50-qmk.rules
|
|
|
|
[yapf]
|
|
align_closing_bracket_with_visual_indent = True
|
|
allow_multiline_dictionary_keys = False
|
|
allow_multiline_lambdas = False
|
|
allow_split_before_default_or_named_assigns = True
|
|
allow_split_before_dict_value = True
|
|
arithmetic_precedence_indication = True
|
|
blank_lines_around_top_level_definition = 2
|
|
blank_line_before_class_docstring = False
|
|
blank_line_before_module_docstring = False
|
|
blank_line_before_nested_class_or_def = False
|
|
coalesce_brackets = True
|
|
column_limit = 256
|
|
continuation_align_style = SPACE
|
|
continuation_indent_width = 4
|
|
dedent_closing_brackets = True
|
|
disable_ending_comma_heuristic = False
|
|
each_dict_entry_on_separate_line = True
|
|
i18n_comment =
|
|
i18n_function_call =
|
|
indent_blank_lines = False
|
|
indent_dictionary_value = True
|
|
indent_width = 4
|
|
join_multiple_lines = False
|
|
no_spaces_around_selected_binary_operators =
|
|
spaces_around_default_or_named_assign = False
|
|
spaces_around_power_operator = False
|
|
spaces_before_comment = 2
|
|
space_between_ending_comma_and_closing_bracket = False
|
|
split_all_comma_separated_values = False
|
|
split_arguments_when_comma_terminated = True
|
|
split_before_arithmetic_operator = False
|
|
split_before_bitwise_operator = True
|
|
split_before_closing_bracket = True
|
|
split_before_dict_set_generator = True
|
|
split_before_dot = False
|
|
split_before_expression_after_opening_paren = False
|
|
split_before_first_argument = False
|
|
split_before_logical_operator = False
|
|
split_before_named_assigns = True
|
|
split_complex_comprehension = True
|
|
split_penalty_after_opening_bracket = 300
|
|
split_penalty_after_unary_operator = 10000
|
|
split_penalty_arithmetic_operator = 300
|
|
split_penalty_before_if_expr = 0
|
|
split_penalty_bitwise_operator = 300
|
|
split_penalty_comprehension = 80
|
|
split_penalty_excess_character = 7000
|
|
split_penalty_for_added_line_split = 30
|
|
split_penalty_import_names = 0
|
|
split_penalty_logical_operator = 300
|
|
use_tabs = False
|