diff --git a/saltax/README.md b/saltax/README.md index 27bb46e..b022445 100644 --- a/saltax/README.md +++ b/saltax/README.md @@ -2,7 +2,7 @@ ## Scope Core functions of `saltax`. ## Structure -- `instructions`: `wfsim` instruction related, including event generators. +- `instructions`: `wfsim` or `fuse` CSV instruction related, including event generators. - `match`: tools to match salted truth and reconstucted signals. - `plugins`: `straxen`-like plugins for salting, equivalently from `raw_records` to `peaklets`. - `contexts.py`: `strax` context for `saltax`. You will want to use `sxenonnt` as default context. diff --git a/saltax/__init__.py b/saltax/__init__.py index a7f7677..ef2f1aa 100644 --- a/saltax/__init__.py +++ b/saltax/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.2" +__version__ = "0.1.0" from . import instructions from .instructions import * diff --git a/saltax/instructions/__init__.py b/saltax/instructions/__init__.py index eb1b5a8..f68c943 100644 --- a/saltax/instructions/__init__.py +++ b/saltax/instructions/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.0.2" +__version__ = "0.1.0" from . import generator from .generator import * diff --git a/saltax/match/__init__.py b/saltax/match/__init__.py index b147dd4..eda09cd 100644 --- a/saltax/match/__init__.py +++ b/saltax/match/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.2" +__version__ = "0.1.0" from . import match from .match import * from . import visual diff --git a/setup.py b/setup.py index 6ddcb24..f09cec4 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ author="Lanqing Yuan", description="Salting analysis framework for XENONnT.", long_description=readme, - version="0.0.2", + version="0.1.0", install_requires=requires, setup_requires=["pytest-runner"], tests_require=requires + ["pytest", "hypothesis", "boltons"],