-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
220 lines (191 loc) · 5.29 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# This is an example configuration file for EPAB.
#
# Version: 2018.9.12.1.
#
# WARNING: this example file will be overwritten every time EPAB starts. Make sure to save your work under another
# name!
#
# It must be renamed to "pyproject.toml" in order to come into effect.
#
# The configuration file follows the TOML format specification.
#
# Mandatory and optional values
# =============================
#
# Some values are mandatory, some aren't. Mandatory values are marked with the "MANDATORY VALUE" tag. If mandatory values
# are missing, EPAB will not start.
#
# Note that, while not necessary for EPAB to function, failing to provide non-mandatory values may prevent
# non-essential modules to start.
#
# OS environment
# ==============
#
# All configuration values may also be given using the OS environment instead of the config file. However,
# the "EPAB_" prefix must be added (this is to prevent any potential conflict with other application.
#
# For example, the configuration "dummy_key: dummy_value" would be set in the OS environment using the variable
# "EPAB_DUMMY_KEY=dummy_value".
#
# Values types
# =============
#
# Value types will be checked at runtime.
#
# TOML specification
# ==================
#
# The full TOML specification can be found at:
#
# Here's an example taken from the readme:
#
# ####################################################################
# # This is a TOML document.
#
# title = "TOML Example"
#
# [owner]
# name = "Tom Preston-Werner"
# dob = 1979-05-27T07:32:00-08:00 # First class dates
#
# [database]
# server = "192.168.1.1"
# ports = [ 8001, 8001, 8002 ]
# connection_max = 5000
# enabled = true
#
# [servers]
#
# # Indentation (tabs and/or spaces) is allowed but not required
# [servers.alpha]
# ip = "10.0.0.1"
# dc = "eqdc10"
#
# [servers.beta]
# ip = "10.0.0.2"
# dc = "eqdc10"
#
# [clients]
# data = [ ["gamma", "delta"], [1, 2] ]
#
# # Line breaks are OK when inside arrays
# hosts = [
# "alpha",
# "omega"
# ]
# ####################################################################
#
#
# START OF ACTUAL CONFIG FILE
[tool.epab]
# Package name
# value type: string
# MANDATORY CONFIG VALUE
package_name = "emiz"
# Less console output
# value type: boolean
# This configuration is optional and comes with a default setting
# default: False
# quiet =
# More console output
# value type: boolean
# This configuration is optional and comes with a default setting
# default: False
# verbose =
[tool.epab.changelog]
# Disable changelog building
# value type: boolean
# This configuration is optional and comes with a default setting
# default: False
# disable =
# Path to changelog file
# value type: path
# This configuration is optional and comes with a default setting
# default: CHANGELOG.rst
# file_path =
[tool.epab.test]
# Additional options for test run
# value type: string
# This configuration is optional and comes with a default setting
# default:
# runner_options =
# Amount of \slow\ tests to show
# value type: integer
# This configuration is optional and comes with a default setting
# default: 10
# duration_count =
# Target of pytest
# value type: string
# This configuration is optional and comes with a default setting
# default: test
# target =
# Minimal coverage to pass tests
# value type: integer
# This configuration is optional and comes with a default setting
# default: 20
# coverage_fail_under =
# Timeout in seconds for pytest runner
# value type: integer
# This configuration is optional and comes with a default setting
# default: 300
# timeout =
[tool.epab.lint]
# Linter max line width
# value type: integer
# This configuration is optional and comes with a default setting
# default: 120
# line_length =
# List of comma separated files for flake8 to exclude
# value type: string
# This configuration is optional and comes with a default setting
# default:
# flake8_exclude =
# Additional MyPy arguments
# value type: string
# This configuration is optional and comes with a default setting
# default:
# mypy_args =
[tool.epab.freeze]
# Main entry point for pyinstaller
# value type: string
# This configuration is optional and comes with a default setting
# default:
# entry_point =
# PyInstaller data-files list
# value type: List of strings
# This configuration is optional and comes with a default setting
# default: []
# data_files =
[tool.epab.doc]
# Documentation repository on Github
# value type: string
# This configuration is optional and comes with a default setting
# default:
# repo =
# Local documentation directory
# value type: path
# This configuration is optional and comes with a default setting
# default: ./doc
# folder =
[tool.epab.appveyor]
# Additional command line options for tests run on AV
# value type: string
# This configuration is optional and comes with a default setting
# default: --long
# test_runner_options =
# List of artifacts for Appveyor
# value type: List of strings
# This configuration is optional and comes with a default setting
# default: []
# artifacts =
[tool.epab.qt]
# Qt resource file (.qrc) location
# value type: string
# This configuration is optional and comes with a default setting
# default:
# res_src =
# Compiled Qt resource file (.py) target location
# value type: string
# This configuration is optional and comes with a default setting
# default:
# res_tgt =