-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
117 lines (103 loc) · 2.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[metadata]
name = rollit
version = 0.0.1
description = An intensely pointless programming language based off of dice notation.
url = https://github.com/russels-crockpot/rollit
author = Brendan McGloin
author_email = russels_dash_crockpot-at-gmail
classifiers =
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Bug Tracker = https://github.com/russels-crockpot/rollit/issues
Source Code = https://github.com/russels-crockpot/rollit
[options]
package_dir =
=src
packages = find:
python_requires = >=3.7
tests_requires =
pytest
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
rollit = rollit
[options.extras_require]
pretty-repl =
pygments
appdirs
prompt_toolkit
documentaton =
chios
sphinx
sphinxcontrib.spelling
sphinx-git
sphinx-issues
sphinx_rtd_theme
humanfriendly
development =
pre-commit
[yapf]
align_closing_bracket_with_visual_indent = false
allow_multiline_dictionary_keys = false
allow_multiline_lambdas = false
allow_split_before_dict_value = 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 = true
coalesce_brackets = false
column_limit = 100
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_function_call = N_, _
indent_dictionary_value = true
indent_width = 4
indent_closing_brackets = false
join_multiple_lines = true
#no_spaces_around_selected_binary_operators =
spaces_around_default_or_named_assign = false
spaces_around_power_operator = false
spaces_around_dict_delimiters = false
spaces_around_list_delimiters = false
spaces_around_tuple_delimiters = false
spaces_before_comment = 2
space_between_ending_comma_and_closing_bracket = false
space_inside_brackets = false
split_all_comma_separated_values = false
split_arguments_when_comma_terminated = true
split_before_bitwise_operator = false
split_before_closing_bracket = true
split_before_dict_set_generator = true
split_before_dot = true
split_before_expression_after_opening_paren = true
split_before_first_argument = true
split_before_logical_operator = true
split_before_named_assigns = true
split_complex_comprehension = true
use_tabs = false
[build_sphinx]
project = rollit
version = 0.0.1
release = 0.0.1
source-dir = docs
builder =
spelling
html
[wheel]
universal = 1
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
# vi: filetype=cfg