lattice-sub 1.1.3__py3-none-any.whl → 1.1.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lattice-sub
3
- Version: 1.1.3
3
+ Version: 1.1.4
4
4
  Summary: Lattice subtraction for cryo-EM micrographs - removes periodic crystal signals to reveal non-periodic features
5
5
  Author-email: George Stephenson <george.stephenson@colorado.edu>, Vignesh Kasinath <vignesh.kasinath@colorado.edu>
6
6
  License: MIT
@@ -1,7 +1,7 @@
1
- lattice_sub-1.1.3.dist-info/licenses/LICENSE,sha256=2kPoH0cbEp0cVEGqMpyF2IQX1npxdtQmWJB__HIRSb0,1101
2
- lattice_subtraction/__init__.py,sha256=wcr9IE2e_JeTrxBqL__6qGKhdp8GouC9d3LhsLdVj94,1737
1
+ lattice_sub-1.1.4.dist-info/licenses/LICENSE,sha256=2kPoH0cbEp0cVEGqMpyF2IQX1npxdtQmWJB__HIRSb0,1101
2
+ lattice_subtraction/__init__.py,sha256=zLLC1T_bGZMDpZTcywjloIsV1vvIhsBbj_P9h7YFPqw,1737
3
3
  lattice_subtraction/batch.py,sha256=sTDWEL5FlEx2HFaJsTZRXyzLQoNCgUqRo900eZ6kq68,12005
4
- lattice_subtraction/cli.py,sha256=o_a7vv0M3sGW-NL64vopxr5FJ35Zs_F_h2824QjtN4g,23566
4
+ lattice_subtraction/cli.py,sha256=fWZ3ueahQXPQ_ApzS345AdslsMF0-6HIAIvan2IFHkk,23597
5
5
  lattice_subtraction/config.py,sha256=dh8EJFzJEEXwwggQ46rBMHsuVOExQWM-kCfonT94_fE,8111
6
6
  lattice_subtraction/core.py,sha256=QzE5CLv92XPoyuw8JcMAGIeSEVgfwSkHgG86WlHAjMo,15790
7
7
  lattice_subtraction/io.py,sha256=uHku6rJ0jeCph7w-gOIDJx-xpNoF6PZcLfb5TBTOiw0,4594
@@ -10,8 +10,8 @@ lattice_subtraction/processing.py,sha256=tmnj5K4Z9HCQhRpJ-iMd9Bj_uTRuvDEWyUenh8M
10
10
  lattice_subtraction/threshold_optimizer.py,sha256=yEsGM_zt6YjgEulEZqtRy113xOFB69aHJIETm2xSS6k,15398
11
11
  lattice_subtraction/ui.py,sha256=Sp_a-yNmBRZJxll8h9T_H5-_KsI13zGYmHcbcpVpbR8,9176
12
12
  lattice_subtraction/visualization.py,sha256=pMZKcz6Xgs98lLaZbvGjoMIyEYA_MLRracVxpQStC3w,5935
13
- lattice_sub-1.1.3.dist-info/METADATA,sha256=ZTKsdrfQBWUKCnz8WBb2RtSkRJw3dZsyT75VlKdfJ2c,12581
14
- lattice_sub-1.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- lattice_sub-1.1.3.dist-info/entry_points.txt,sha256=o8PzJR8kFnXlKZufoYGBIHpiosM-P4PZeKZXJjtPS6Y,61
16
- lattice_sub-1.1.3.dist-info/top_level.txt,sha256=BOuW-sm4G-fQtsWPRdeLzWn0WS8sDYVNKIMj5I3JXew,20
17
- lattice_sub-1.1.3.dist-info/RECORD,,
13
+ lattice_sub-1.1.4.dist-info/METADATA,sha256=hPnPdJSHoP4DL_2R-frH5982ftSw4ggVpxiZsFcoNRM,12581
14
+ lattice_sub-1.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ lattice_sub-1.1.4.dist-info/entry_points.txt,sha256=o8PzJR8kFnXlKZufoYGBIHpiosM-P4PZeKZXJjtPS6Y,61
16
+ lattice_sub-1.1.4.dist-info/top_level.txt,sha256=BOuW-sm4G-fQtsWPRdeLzWn0WS8sDYVNKIMj5I3JXew,20
17
+ lattice_sub-1.1.4.dist-info/RECORD,,
@@ -19,7 +19,7 @@ Example:
19
19
  >>> result.save("output.mrc")
20
20
  """
21
21
 
22
- __version__ = "1.1.3"
22
+ __version__ = "1.1.4"
23
23
  __author__ = "George Stephenson & Vignesh Kasinath"
24
24
 
25
25
  from .config import Config
@@ -122,8 +122,11 @@ def setup_logging(verbose: bool, interactive: bool = False) -> None:
122
122
  )
123
123
 
124
124
 
125
+ from . import __version__
126
+
127
+
125
128
  @click.group()
126
- @click.version_option(version="1.0.10", prog_name="lattice-sub")
129
+ @click.version_option(version=__version__, prog_name="lattice-sub")
127
130
  def main():
128
131
  """
129
132
  Lattice Subtraction for Cryo-EM Micrographs.