mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 20:42:27 +00:00
4ba30304a4
* Improve extra requirement handling * New mechanism to handle parameters beforehand in chained calls, and the ability to get help on available parameters in chained calls (through `?help`). * Redefined Analysis, to reflect the new ontology * Add parameters as an entity in the schema * Update examples to include analyses and parameters * Add processing plugins, with an interface similar to analysis plugins * Update tests * Avoid duplication in split plugin Closes #51 Squashed commit of the following: commitd145a852e7
commit6a1069780b
commitca69bddc17
commitaa35e62a27
19 lines
493 B
INI
19 lines
493 B
INI
[metadata]
|
|
description-file = README.rst
|
|
[aliases]
|
|
test=pytest
|
|
[flake8]
|
|
# because of the way that future works, we need to call install_aliases before
|
|
# finishing the imports. flake8 thinks that we're doing the imports too late,
|
|
# but it's actually ok
|
|
ignore = E402
|
|
max-line-length = 100
|
|
[bdist_wheel]
|
|
universal=1
|
|
[tool:pytest]
|
|
addopts = --cov=senpy --cov-report term-missing
|
|
filterwarnings =
|
|
ignore:the matrix subclass:PendingDeprecationWarning
|
|
[coverage:report]
|
|
omit = senpy/__main__.py
|