omniopt2 7773__py3-none-any.whl → 8129__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of omniopt2 might be problematic. Click here for more details.

Files changed (46) hide show
  1. .omniopt.py +1566 -1334
  2. .shellscript_functions +5 -5
  3. .tests/pylint.rc +687 -0
  4. README.md +0 -2
  5. omniopt +126 -37
  6. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt.py +1566 -1334
  7. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.shellscript_functions +5 -5
  8. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/omniopt +126 -37
  9. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/omniopt_plot +0 -4
  10. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/omniopt_share +0 -11
  11. omniopt2-8129.data/data/bin/pylint.rc +687 -0
  12. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/requirements.txt +1 -2
  13. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/setup.py +2 -1
  14. {omniopt2-7773.dist-info → omniopt2-8129.dist-info}/METADATA +2 -5
  15. omniopt2-8129.dist-info/RECORD +71 -0
  16. omniopt2.egg-info/PKG-INFO +2 -5
  17. omniopt2.egg-info/SOURCES.txt +1 -0
  18. omniopt2.egg-info/requires.txt +1 -2
  19. omniopt_plot +0 -4
  20. omniopt_share +0 -11
  21. pyproject.toml +1 -1
  22. requirements.txt +1 -2
  23. omniopt2-7773.dist-info/RECORD +0 -69
  24. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.colorfunctions.sh +0 -0
  25. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.general.sh +0 -0
  26. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.helpers.py +0 -0
  27. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
  28. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_general.py +0 -0
  29. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
  30. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_kde.py +0 -0
  31. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_scatter.py +0 -0
  32. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
  33. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
  34. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
  35. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
  36. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.omniopt_plot_worker.py +0 -0
  37. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.random_generator.py +0 -0
  38. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/.tpe.py +0 -0
  39. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/LICENSE +0 -0
  40. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/apt-dependencies.txt +0 -0
  41. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/omniopt_docker +0 -0
  42. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/omniopt_evaluate +0 -0
  43. {omniopt2-7773.data → omniopt2-8129.data}/data/bin/test_requirements.txt +0 -0
  44. {omniopt2-7773.dist-info → omniopt2-8129.dist-info}/WHEEL +0 -0
  45. {omniopt2-7773.dist-info → omniopt2-8129.dist-info}/licenses/LICENSE +0 -0
  46. {omniopt2-7773.dist-info → omniopt2-8129.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,687 @@
1
+ [MAIN]
2
+
3
+ # Analyse import fallback blocks. This can be used to support both Python 2 and
4
+ # 3 compatible code, which means that the block might have code that exists
5
+ # only in one or another interpreter, leading to false positives when analysed.
6
+ analyse-fallback-blocks=no
7
+
8
+ # Clear in-memory caches upon conclusion of linting. Useful if running pylint
9
+ # in a server-like mode.
10
+ clear-cache-post-run=no
11
+
12
+ # Load and enable all available extensions. Use --list-extensions to see a list
13
+ # all available extensions.
14
+ #enable-all-extensions=
15
+
16
+ # In error mode, messages with a category besides ERROR or FATAL are
17
+ # suppressed, and no reports are done by default. Error mode is compatible with
18
+ # disabling specific errors.
19
+ #errors-only=
20
+
21
+ # Always return a 0 (non-error) status code, even if lint errors are found.
22
+ # This is primarily useful in continuous integration scripts.
23
+ #exit-zero=
24
+
25
+ # A comma-separated list of package or module names from where C extensions may
26
+ # be loaded. Extensions are loading into the active Python interpreter and may
27
+ # run arbitrary code.
28
+ extension-pkg-allow-list=
29
+
30
+ # A comma-separated list of package or module names from where C extensions may
31
+ # be loaded. Extensions are loading into the active Python interpreter and may
32
+ # run arbitrary code. (This is an alternative name to extension-pkg-allow-list
33
+ # for backward compatibility.)
34
+ extension-pkg-whitelist=
35
+
36
+ # Return non-zero exit code if any of these messages/categories are detected,
37
+ # even if score is above --fail-under value. Syntax same as enable. Messages
38
+ # specified are enabled, while categories only check already-enabled messages.
39
+ fail-on=
40
+
41
+ # Specify a score threshold under which the program will exit with error.
42
+ fail-under=10
43
+
44
+ # Interpret the stdin as a python script, whose filename needs to be passed as
45
+ # the module_or_package argument.
46
+ #from-stdin=
47
+
48
+ # Files or directories to be skipped. They should be base names, not paths.
49
+ ignore=CVS
50
+
51
+ # Add files or directories matching the regular expressions patterns to the
52
+ # ignore-list. The regex matches against paths and can be in Posix or Windows
53
+ # format. Because '\\' represents the directory delimiter on Windows systems,
54
+ # it can't be used as an escape character.
55
+ ignore-paths=
56
+
57
+ # Files or directories matching the regular expression patterns are skipped.
58
+ # The regex matches against base names, not paths. The default value ignores
59
+ # Emacs file locks
60
+ ignore-patterns=^\.#
61
+
62
+ # List of module names for which member attributes should not be checked and
63
+ # will not be imported (useful for modules/projects where namespaces are
64
+ # manipulated during runtime and thus existing member attributes cannot be
65
+ # deduced by static analysis). It supports qualified module names, as well as
66
+ # Unix pattern matching.
67
+ ignored-modules=
68
+
69
+ # Python code to execute, usually for sys.path manipulation such as
70
+ # pygtk.require().
71
+ #init-hook=
72
+
73
+ # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
74
+ # number of processors available to use, and will cap the count on Windows to
75
+ # avoid hangs.
76
+ jobs=1
77
+
78
+ # Control the amount of potential inferred values when inferring a single
79
+ # object. This can help the performance when dealing with large functions or
80
+ # complex, nested conditions.
81
+ limit-inference-results=100
82
+
83
+ # List of plugins (as comma separated values of python module names) to load,
84
+ # usually to register additional checkers.
85
+ load-plugins=
86
+
87
+ # Pickle collected data for later comparisons.
88
+ persistent=yes
89
+
90
+ # Resolve imports to .pyi stubs if available. May reduce no-member messages and
91
+ # increase not-an-iterable messages.
92
+
93
+ # Minimum Python version to use for version dependent checks. Will default to
94
+ # the version used to run pylint.
95
+ py-version=3.11
96
+
97
+ # Discover python modules and packages in the file system subtree.
98
+ recursive=no
99
+
100
+ # Add paths to the list of the source roots. Supports globbing patterns. The
101
+ # source root is an absolute path or a path relative to the current working
102
+ # directory used to determine a package namespace for modules located under the
103
+ # source root.
104
+ source-roots=
105
+
106
+ # When enabled, pylint would attempt to guess common misconfiguration and emit
107
+ # user-friendly hints instead of false-positive error messages.
108
+ suggestion-mode=yes
109
+
110
+ # Allow loading of arbitrary C extensions. Extensions are imported into the
111
+ # active Python interpreter and may run arbitrary code.
112
+ unsafe-load-any-extension=no
113
+
114
+ # In verbose mode, extra non-checker-related info will be displayed.
115
+ #verbose=
116
+
117
+
118
+ [BASIC]
119
+
120
+ # Naming style matching correct argument names.
121
+ argument-naming-style=snake_case
122
+
123
+ # Regular expression matching correct argument names. Overrides argument-
124
+ # naming-style. If left empty, argument names will be checked with the set
125
+ # naming style.
126
+ #argument-rgx=
127
+
128
+ # Naming style matching correct attribute names.
129
+ attr-naming-style=snake_case
130
+
131
+ # Regular expression matching correct attribute names. Overrides attr-naming-
132
+ # style. If left empty, attribute names will be checked with the set naming
133
+ # style.
134
+ #attr-rgx=
135
+
136
+ # Bad variable names which should always be refused, separated by a comma.
137
+ bad-names=foo,
138
+ bar,
139
+ baz,
140
+ toto,
141
+ tutu,
142
+ tata
143
+
144
+ # Bad variable names regexes, separated by a comma. If names match any regex,
145
+ # they will always be refused
146
+ bad-names-rgxs=
147
+
148
+ # Naming style matching correct class attribute names.
149
+ class-attribute-naming-style=any
150
+
151
+ # Regular expression matching correct class attribute names. Overrides class-
152
+ # attribute-naming-style. If left empty, class attribute names will be checked
153
+ # with the set naming style.
154
+ #class-attribute-rgx=
155
+
156
+ # Naming style matching correct class constant names.
157
+ class-const-naming-style=UPPER_CASE
158
+
159
+ # Regular expression matching correct class constant names. Overrides class-
160
+ # const-naming-style. If left empty, class constant names will be checked with
161
+ # the set naming style.
162
+ #class-const-rgx=
163
+
164
+ # Naming style matching correct class names.
165
+ class-naming-style=PascalCase
166
+
167
+ # Regular expression matching correct class names. Overrides class-naming-
168
+ # style. If left empty, class names will be checked with the set naming style.
169
+ #class-rgx=
170
+
171
+ # Naming style matching correct constant names.
172
+ const-naming-style=UPPER_CASE
173
+
174
+ # Regular expression matching correct constant names. Overrides const-naming-
175
+ # style. If left empty, constant names will be checked with the set naming
176
+ # style.
177
+ #const-rgx=
178
+
179
+ # Minimum line length for functions/classes that require docstrings, shorter
180
+ # ones are exempt.
181
+ docstring-min-length=-1
182
+
183
+ # Naming style matching correct function names.
184
+ function-naming-style=snake_case
185
+
186
+ # Regular expression matching correct function names. Overrides function-
187
+ # naming-style. If left empty, function names will be checked with the set
188
+ # naming style.
189
+ #function-rgx=
190
+
191
+ # Good variable names which should always be accepted, separated by a comma.
192
+ good-names=i,
193
+ j,
194
+ k,
195
+ ex,
196
+ Run,
197
+ _
198
+
199
+ # Good variable names regexes, separated by a comma. If names match any regex,
200
+ # they will always be accepted
201
+ good-names-rgxs=
202
+
203
+ # Include a hint for the correct naming format with invalid-name.
204
+ include-naming-hint=no
205
+
206
+ # Naming style matching correct inline iteration names.
207
+ inlinevar-naming-style=any
208
+
209
+ # Regular expression matching correct inline iteration names. Overrides
210
+ # inlinevar-naming-style. If left empty, inline iteration names will be checked
211
+ # with the set naming style.
212
+ #inlinevar-rgx=
213
+
214
+ # Naming style matching correct method names.
215
+ method-naming-style=snake_case
216
+
217
+ # Regular expression matching correct method names. Overrides method-naming-
218
+ # style. If left empty, method names will be checked with the set naming style.
219
+ #method-rgx=
220
+
221
+ # Naming style matching correct module names.
222
+ module-naming-style=snake_case
223
+
224
+ # Regular expression matching correct module names. Overrides module-naming-
225
+ # style. If left empty, module names will be checked with the set naming style.
226
+ #module-rgx=
227
+
228
+ # Colon-delimited sets of names that determine each other's naming style when
229
+ # the name regexes allow several styles.
230
+ name-group=
231
+
232
+ # Regular expression which should only match function or class names that do
233
+ # not require a docstring.
234
+ no-docstring-rgx=^_
235
+
236
+ # List of decorators that produce properties, such as abc.abstractproperty. Add
237
+ # to this list to register other decorators that produce valid properties.
238
+ # These decorators are taken in consideration only for invalid-name.
239
+ property-classes=abc.abstractproperty
240
+
241
+ # Regular expression matching correct type alias names. If left empty, type
242
+ # alias names will be checked with the set naming style.
243
+ #typealias-rgx=
244
+
245
+ # Regular expression matching correct type variable names. If left empty, type
246
+ # variable names will be checked with the set naming style.
247
+ #typevar-rgx=
248
+
249
+ # Naming style matching correct variable names.
250
+ variable-naming-style=snake_case
251
+
252
+ # Regular expression matching correct variable names. Overrides variable-
253
+ # naming-style. If left empty, variable names will be checked with the set
254
+ # naming style.
255
+ #variable-rgx=
256
+
257
+
258
+ [CLASSES]
259
+
260
+ # Warn about protected attribute access inside special methods
261
+ check-protected-access-in-special-methods=no
262
+
263
+ # List of method names used to declare (i.e. assign) instance attributes.
264
+ defining-attr-methods=__init__,
265
+ __new__,
266
+ setUp,
267
+ asyncSetUp,
268
+ __post_init__
269
+
270
+ # List of member names, which should be excluded from the protected access
271
+ # warning.
272
+ exclude-protected=_asdict,_fields,_replace,_source,_make,os._exit
273
+
274
+ # List of valid names for the first argument in a class method.
275
+ valid-classmethod-first-arg=cls
276
+
277
+ # List of valid names for the first argument in a metaclass class method.
278
+ valid-metaclass-classmethod-first-arg=mcs
279
+
280
+
281
+ [DESIGN]
282
+
283
+ # List of regular expressions of class ancestor names to ignore when counting
284
+ # public methods (see R0903)
285
+ exclude-too-few-public-methods=
286
+
287
+ # List of qualified class names to ignore when counting class parents (see
288
+ # R0901)
289
+ ignored-parents=
290
+
291
+ # Maximum number of arguments for function / method.
292
+ max-args=5
293
+
294
+ # Maximum number of attributes for a class (see R0902).
295
+ max-attributes=7
296
+
297
+ # Maximum number of boolean expressions in an if statement (see R0916).
298
+ max-bool-expr=5
299
+
300
+ # Maximum number of branch for function / method body.
301
+ max-branches=12
302
+
303
+ # Maximum number of locals for function / method body.
304
+ max-locals=15
305
+
306
+ # Maximum number of parents for a class (see R0901).
307
+ max-parents=7
308
+
309
+ # Maximum number of public methods for a class (see R0904).
310
+ max-public-methods=20
311
+
312
+ # Maximum number of return / yield for function / method body.
313
+ max-returns=6
314
+
315
+ # Maximum number of statements in function / method body.
316
+ max-statements=50
317
+
318
+ # Minimum number of public methods for a class (see R0903).
319
+ min-public-methods=2
320
+
321
+
322
+ [EXCEPTIONS]
323
+
324
+ # Exceptions that will emit a warning when caught.
325
+ overgeneral-exceptions=builtins.BaseException,builtins.Exception
326
+
327
+
328
+ [FORMAT]
329
+
330
+ # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
331
+ expected-line-ending-format=
332
+
333
+ # Regexp for a line that is allowed to be longer than the limit.
334
+ ignore-long-lines=^\s*(# )?<?https?://\S+>?$
335
+
336
+ # Number of spaces of indent required inside a hanging or continued line.
337
+ indent-after-paren=4
338
+
339
+ # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
340
+ # tab).
341
+ indent-string=' '
342
+
343
+ # Maximum number of characters on a single line.
344
+ max-line-length=100
345
+
346
+ # Maximum number of lines in a module.
347
+ max-module-lines=1000
348
+
349
+ # Allow the body of a class to be on the same line as the declaration if body
350
+ # contains single statement.
351
+ single-line-class-stmt=no
352
+
353
+ # Allow the body of an if to be on the same line as the test if there is no
354
+ # else.
355
+ single-line-if-stmt=no
356
+
357
+
358
+ [IMPORTS]
359
+
360
+ # List of modules that can be imported at any level, not just the top level
361
+ # one.
362
+ allow-any-import-level=
363
+
364
+ # Allow explicit reexports by alias from a package __init__.
365
+ allow-reexport-from-package=no
366
+
367
+ # Allow wildcard imports from modules that define __all__.
368
+ allow-wildcard-with-all=no
369
+
370
+ # Deprecated modules which should not be used, separated by a comma.
371
+ deprecated-modules=
372
+
373
+ # Output a graph (.gv or any supported image format) of external dependencies
374
+ # to the given file (report RP0402 must not be disabled).
375
+ ext-import-graph=
376
+
377
+ # Output a graph (.gv or any supported image format) of all (i.e. internal and
378
+ # external) dependencies to the given file (report RP0402 must not be
379
+ # disabled).
380
+ import-graph=
381
+
382
+ # Output a graph (.gv or any supported image format) of internal dependencies
383
+ # to the given file (report RP0402 must not be disabled).
384
+ int-import-graph=
385
+
386
+ # Force import order to recognize a module as part of the standard
387
+ # compatibility libraries.
388
+ known-standard-library=
389
+
390
+ # Force import order to recognize a module as part of a third party library.
391
+ known-third-party=enchant
392
+
393
+ # Couples of modules and preferred modules, separated by a comma.
394
+ preferred-modules=
395
+
396
+
397
+ [LOGGING]
398
+
399
+ # The type of string formatting that logging methods do. `old` means using %
400
+ # formatting, `new` is for `{}` formatting.
401
+ logging-format-style=old
402
+
403
+ # Logging modules to check that the string format arguments are in logging
404
+ # function parameter format.
405
+ logging-modules=logging
406
+
407
+
408
+ [MESSAGES CONTROL]
409
+
410
+ # Only show warnings with the listed confidence levels. Leave empty to show
411
+ # all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE,
412
+ # UNDEFINED.
413
+ confidence=HIGH,
414
+ CONTROL_FLOW,
415
+ INFERENCE,
416
+ INFERENCE_FAILURE,
417
+ UNDEFINED
418
+
419
+ # Disable the message, report, category or checker with the given id(s). You
420
+ # can either give multiple identifiers separated by comma (,) or put this
421
+ # option multiple times (only on the command line, not in the configuration
422
+ # file where it should appear only once). You can also use "--disable=all" to
423
+ # disable everything first and then re-enable specific checks. For example, if
424
+ # you want to run only the similarities checker, you can use "--disable=all
425
+ # --enable=similarities". If you want to run only the classes checker, but have
426
+ # no Warning level messages displayed, use "--disable=all --enable=classes
427
+ # --disable=W".
428
+ disable=raw-checker-failed,
429
+ protected-access,
430
+ too-many-positional-arguments,
431
+ missing-function-docstring,
432
+ eval-used,
433
+ missing-class-docstring,
434
+ import-error,
435
+ no-name-in-module,
436
+ unexpected-keyword-arg,
437
+ no-value-for-parameter,
438
+ unidiomatic-typecheck,
439
+ possibly-used-before-assignment,
440
+ global-statement,
441
+ too-many-lines,
442
+ fixme,
443
+ too-few-public-methods,
444
+ chained-comparison,
445
+ use-dict-literal,
446
+ too-many-locals,
447
+ too-many-branches,
448
+ missing-module-docstring,
449
+ too-many-statements,
450
+ use-implicit-booleaness-not-len,
451
+ too-many-nested-blocks,
452
+ consider-using-dict-items,
453
+ ungrouped-imports,
454
+ broad-exception-caught,
455
+ global-variable-not-assigned,
456
+ too-many-arguments,
457
+ super-with-arguments,
458
+ dangerous-default-value,
459
+ consider-using-get,
460
+ use-maxsplit-arg,
461
+ unnecessary-comprehension,
462
+ consider-using-with,
463
+ arguments-renamed,
464
+ consider-iterating-dictionary,
465
+ consider-using-enumerate,
466
+ consider-using-f-string,
467
+ invalid-name,
468
+ too-many-instance-attributes,
469
+ redefined-builtin,
470
+ line-too-long,
471
+ c-extension-no-member,
472
+ bad-inline-option,
473
+ locally-disabled,
474
+ file-ignored,
475
+ import-outside-toplevel,
476
+ too-many-function-args,
477
+ suppressed-message,
478
+ redefined-outer-name,
479
+ useless-suppression,
480
+ deprecated-pragma,
481
+ use-symbolic-message-instead,
482
+ too-many-return-statements,
483
+
484
+ # Enable the message, report, category or checker with the given id(s). You can
485
+ # either give multiple identifier separated by comma (,) or put this option
486
+ # multiple time (only on the command line, not in the configuration file where
487
+ # it should appear only once). See also the "--disable" option for examples.
488
+ enable=
489
+
490
+
491
+ [METHOD_ARGS]
492
+
493
+ # List of qualified names (i.e., library.method) which require a timeout
494
+ # parameter e.g. 'requests.api.get,requests.api.post'
495
+ timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
496
+
497
+
498
+ [MISCELLANEOUS]
499
+
500
+ # List of note tags to take in consideration, separated by a comma.
501
+ notes=FIXME,
502
+ XXX,
503
+ TODO
504
+
505
+ # Regular expression of note tags to take in consideration.
506
+ notes-rgx=
507
+
508
+
509
+ [REFACTORING]
510
+
511
+ # Maximum number of nested blocks for function / method body
512
+ max-nested-blocks=5
513
+
514
+ # Complete name of functions that never returns. When checking for
515
+ # inconsistent-return-statements if a never returning function is called then
516
+ # it will be considered as an explicit return statement and no message will be
517
+ # printed.
518
+ never-returning-functions=sys.exit,argparse.parse_error
519
+
520
+ # Let 'consider-using-join' be raised when the separator to join on would be
521
+ # non-empty (resulting in expected fixes of the type: ``"- " + " -
522
+ # ".join(items)``)
523
+
524
+
525
+ [REPORTS]
526
+
527
+ # Python expression which should return a score less than or equal to 10. You
528
+ # have access to the variables 'fatal', 'error', 'warning', 'refactor',
529
+ # 'convention', and 'info' which contain the number of messages in each
530
+ # category, as well as 'statement' which is the total number of statements
531
+ # analyzed. This score is used by the global evaluation report (RP0004).
532
+ evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10))
533
+
534
+ # Template used to display messages. This is a python new-style format string
535
+ # used to format the message information. See doc for all details.
536
+ msg-template=
537
+
538
+ # Set the output format. Available formats are: text, parseable, colorized,
539
+ # json2 (improved json format), json (old json format) and msvs (visual
540
+ # studio). You can also give a reporter class, e.g.
541
+ # mypackage.mymodule.MyReporterClass.
542
+ #output-format=
543
+
544
+ # Tells whether to display a full report or only the messages.
545
+ reports=no
546
+
547
+ # Activate the evaluation score.
548
+ score=yes
549
+
550
+
551
+ [SIMILARITIES]
552
+
553
+ # Comments are removed from the similarity computation
554
+ ignore-comments=yes
555
+
556
+ # Docstrings are removed from the similarity computation
557
+ ignore-docstrings=yes
558
+
559
+ # Imports are removed from the similarity computation
560
+ ignore-imports=yes
561
+
562
+ # Signatures are removed from the similarity computation
563
+ ignore-signatures=yes
564
+
565
+ # Minimum lines number of a similarity.
566
+ min-similarity-lines=4
567
+
568
+
569
+ [SPELLING]
570
+
571
+ # Limits count of emitted suggestions for spelling mistakes.
572
+ max-spelling-suggestions=4
573
+
574
+ # Spelling dictionary name. No available dictionaries : You need to install
575
+ # both the python package and the system dependency for enchant to work.
576
+ spelling-dict=
577
+
578
+ # List of comma separated words that should be considered directives if they
579
+ # appear at the beginning of a comment and should not be checked.
580
+ spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:
581
+
582
+ # List of comma separated words that should not be checked.
583
+ spelling-ignore-words=
584
+
585
+ # A path to a file that contains the private dictionary; one word per line.
586
+ spelling-private-dict-file=
587
+
588
+ # Tells whether to store unknown words to the private dictionary (see the
589
+ # --spelling-private-dict-file option) instead of raising a message.
590
+ spelling-store-unknown-words=no
591
+
592
+
593
+ [STRING]
594
+
595
+ # This flag controls whether inconsistent-quotes generates a warning when the
596
+ # character used as a quote delimiter is used inconsistently within a module.
597
+ check-quote-consistency=no
598
+
599
+ # This flag controls whether the implicit-str-concat should generate a warning
600
+ # on implicit string concatenation in sequences defined over several lines.
601
+ check-str-concat-over-line-jumps=no
602
+
603
+
604
+ [TYPECHECK]
605
+
606
+ # List of decorators that produce context managers, such as
607
+ # contextlib.contextmanager. Add to this list to register other decorators that
608
+ # produce valid context managers.
609
+ contextmanager-decorators=contextlib.contextmanager
610
+
611
+ # List of members which are set dynamically and missed by pylint inference
612
+ # system, and so shouldn't trigger E1101 when accessed. Python regular
613
+ # expressions are accepted.
614
+ generated-members=
615
+
616
+ # Tells whether to warn about missing members when the owner of the attribute
617
+ # is inferred to be None.
618
+ ignore-none=yes
619
+
620
+ # This flag controls whether pylint should warn about no-member and similar
621
+ # checks whenever an opaque object is returned when inferring. The inference
622
+ # can return multiple potential results while evaluating a Python object, but
623
+ # some branches might not be evaluated, which results in partial inference. In
624
+ # that case, it might be useful to still emit no-member and other checks for
625
+ # the rest of the inferred objects.
626
+ ignore-on-opaque-inference=yes
627
+
628
+ # List of symbolic message names to ignore for Mixin members.
629
+ ignored-checks-for-mixins=no-member,
630
+ not-async-context-manager,
631
+ not-context-manager,
632
+ attribute-defined-outside-init
633
+
634
+ # List of class names for which member attributes should not be checked (useful
635
+ # for classes with dynamically set attributes). This supports the use of
636
+ # qualified names.
637
+ ignored-classes=optparse.Values,thread._local,_thread._local,argparse.Namespace
638
+
639
+ # Show a hint with possible names when a member name was not found. The aspect
640
+ # of finding the hint is based on edit distance.
641
+ missing-member-hint=yes
642
+
643
+ # The minimum edit distance a name should have in order to be considered a
644
+ # similar match for a missing member name.
645
+ missing-member-hint-distance=1
646
+
647
+ # The total number of similar names that should be taken in consideration when
648
+ # showing a hint for a missing member.
649
+ missing-member-max-choices=1
650
+
651
+ # Regex pattern to define which classes are considered mixins.
652
+ mixin-class-rgx=.*[Mm]ixin
653
+
654
+ # List of decorators that change the signature of a decorated function.
655
+ signature-mutators=
656
+
657
+
658
+ [VARIABLES]
659
+
660
+ # List of additional names supposed to be defined in builtins. Remember that
661
+ # you should avoid defining new builtins when possible.
662
+ additional-builtins=
663
+
664
+ # Tells whether unused global variables should be treated as a violation.
665
+ allow-global-unused-variables=yes
666
+
667
+ # List of names allowed to shadow builtins
668
+ allowed-redefined-builtins=
669
+
670
+ # List of strings which can identify a callback function by name. A callback
671
+ # name must start or end with one of those strings.
672
+ callbacks=cb_,
673
+ _cb
674
+
675
+ # A regular expression matching the name of dummy variables (i.e. expected to
676
+ # not be used).
677
+ dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
678
+
679
+ # Argument names that match this expression will be ignored.
680
+ ignored-argument-names=_.*|^ignored_|^unused_
681
+
682
+ # Tells whether we should check for unused import in __init__ files.
683
+ init-import=no
684
+
685
+ # List of qualified module names which can have objects that can redefine
686
+ # builtins.
687
+ redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
@@ -1,12 +1,11 @@
1
1
  mypydie
2
- pymysql
3
2
  sqlalchemy
4
3
  setuptools
5
4
  wheel
6
5
  multidict
7
6
  numpy
8
7
  python-dateutil
9
- ax-platform[mysql]
8
+ ax-platform
10
9
  art
11
10
  tzlocal
12
11
  Rich
@@ -117,12 +117,13 @@ all_needed_files.append("test_requirements.txt")
117
117
  all_needed_files.append("apt-dependencies.txt")
118
118
  all_needed_files.append(".colorfunctions.sh")
119
119
  all_needed_files.append(".shellscript_functions")
120
+ all_needed_files.append(".tests/pylint.rc")
120
121
 
121
122
  setup(
122
123
  long_description=open('README.md', encoding="utf-8").read(),
123
124
  long_description_content_type='text/markdown',
124
125
  name='omniopt2',
125
- version='0.95',
126
+ version='0.97',
126
127
  description='Automatic hyperparameter optimizer based on Ax/Botorch',
127
128
  author='Norman Koch',
128
129
  author_email='norman.koch@tu-dresden.de',