empix 0.0.8__tar.gz → 0.0.9__tar.gz

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.
Files changed (39) hide show
  1. {empix-0.0.8 → empix-0.0.9}/PKG-INFO +5 -5
  2. {empix-0.0.8 → empix-0.0.9}/README.md +4 -4
  3. {empix-0.0.8 → empix-0.0.9}/docs/INSTALL.rst +2 -2
  4. {empix-0.0.8 → empix-0.0.9}/empix/version.py +3 -3
  5. {empix-0.0.8 → empix-0.0.9}/empix.egg-info/PKG-INFO +5 -5
  6. empix-0.0.9/examples/basic_usage.ipynb +1842 -0
  7. empix-0.0.8/examples/basic_usage.ipynb +0 -1141
  8. {empix-0.0.8 → empix-0.0.9}/.coveragerc +0 -0
  9. {empix-0.0.8 → empix-0.0.9}/.github/workflows/measure_code_coverage.yml +0 -0
  10. {empix-0.0.8 → empix-0.0.9}/.github/workflows/publish_documentation_website.yml +0 -0
  11. {empix-0.0.8 → empix-0.0.9}/.github/workflows/publish_release_to_pypi.yml +0 -0
  12. {empix-0.0.8 → empix-0.0.9}/.github/workflows/test_library.yml +0 -0
  13. {empix-0.0.8 → empix-0.0.9}/.gitignore +0 -0
  14. {empix-0.0.8 → empix-0.0.9}/LICENSE +0 -0
  15. {empix-0.0.8 → empix-0.0.9}/docs/Makefile +0 -0
  16. {empix-0.0.8 → empix-0.0.9}/docs/_static/readthedocs_custom.css +0 -0
  17. {empix-0.0.8 → empix-0.0.9}/docs/_templates/custom_class_template.rst +0 -0
  18. {empix-0.0.8 → empix-0.0.9}/docs/_templates/custom_module_template.rst +0 -0
  19. {empix-0.0.8 → empix-0.0.9}/docs/_templates/versions.html +0 -0
  20. {empix-0.0.8 → empix-0.0.9}/docs/api.rst +0 -0
  21. {empix-0.0.8 → empix-0.0.9}/docs/build_docs.py +0 -0
  22. {empix-0.0.8 → empix-0.0.9}/docs/conf.py +0 -0
  23. {empix-0.0.8 → empix-0.0.9}/docs/examples.rst +0 -0
  24. {empix-0.0.8 → empix-0.0.9}/docs/index.rst +0 -0
  25. {empix-0.0.8 → empix-0.0.9}/docs/license.rst +0 -0
  26. {empix-0.0.8 → empix-0.0.9}/docs/make.bat +0 -0
  27. {empix-0.0.8 → empix-0.0.9}/docs/private_members_to_publish_to_docs.rst +0 -0
  28. {empix-0.0.8 → empix-0.0.9}/empix/__init__.py +0 -0
  29. {empix-0.0.8 → empix-0.0.9}/empix.egg-info/SOURCES.txt +0 -0
  30. {empix-0.0.8 → empix-0.0.9}/empix.egg-info/dependency_links.txt +0 -0
  31. {empix-0.0.8 → empix-0.0.9}/empix.egg-info/requires.txt +0 -0
  32. {empix-0.0.8 → empix-0.0.9}/empix.egg-info/top_level.txt +0 -0
  33. {empix-0.0.8 → empix-0.0.9}/examples/helpers_for_basic_usage.py +0 -0
  34. {empix-0.0.8 → empix-0.0.9}/pyproject.toml +0 -0
  35. {empix-0.0.8 → empix-0.0.9}/run_tests.sh +0 -0
  36. {empix-0.0.8 → empix-0.0.9}/setup.cfg +0 -0
  37. {empix-0.0.8 → empix-0.0.9}/setup.py +0 -0
  38. {empix-0.0.8 → empix-0.0.9}/tests/test_root.py +0 -0
  39. {empix-0.0.8 → empix-0.0.9}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: empix
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: Contains tools for analyzing electron microscopy data that are not available in ``hyperspy``.
5
5
  Author-email: Matthew Fitzpatrick <matthew.rc.fitzpatrick@gmail.com>
6
6
  Project-URL: Homepage, https://mrfitzpa.github.io/empix
@@ -91,8 +91,8 @@ systems you could open e.g. an Anaconda Prompt as an administrator.
91
91
  #### Installing `empix` using `pip`
92
92
 
93
93
  Before installing `empix`, make sure that you have activated the (virtual)
94
- environment in which you intend to install said package. After which, simply
95
- change into the root of the repository, and run the following command:
94
+ environment in which you intend to install said package. After which, simply run
95
+ the following command:
96
96
 
97
97
  pip install empix
98
98
 
@@ -149,12 +149,12 @@ The above command will install the latest stable version of `empix`.
149
149
  ### Uninstalling `empix`
150
150
 
151
151
  If `empix` was installed using `pip`, then to uninstall, run the following
152
- command from the root of the repository:
152
+ command:
153
153
 
154
154
  pip uninstall empix
155
155
 
156
156
  If `empix` was installed using `conda`, then to uninstall, run the
157
- following command from the root of the repository:
157
+ following command:
158
158
 
159
159
  conda remove empix
160
160
 
@@ -48,8 +48,8 @@ systems you could open e.g. an Anaconda Prompt as an administrator.
48
48
  #### Installing `empix` using `pip`
49
49
 
50
50
  Before installing `empix`, make sure that you have activated the (virtual)
51
- environment in which you intend to install said package. After which, simply
52
- change into the root of the repository, and run the following command:
51
+ environment in which you intend to install said package. After which, simply run
52
+ the following command:
53
53
 
54
54
  pip install empix
55
55
 
@@ -106,12 +106,12 @@ The above command will install the latest stable version of `empix`.
106
106
  ### Uninstalling `empix`
107
107
 
108
108
  If `empix` was installed using `pip`, then to uninstall, run the following
109
- command from the root of the repository:
109
+ command:
110
110
 
111
111
  pip uninstall empix
112
112
 
113
113
  If `empix` was installed using `conda`, then to uninstall, run the
114
- following command from the root of the repository:
114
+ following command:
115
115
 
116
116
  conda remove empix
117
117
 
@@ -82,11 +82,11 @@ Uninstalling ``empix``
82
82
  ----------------------
83
83
 
84
84
  If ``empix`` was installed using ``pip``, then to uninstall, run the
85
- following command from the root of the repository::
85
+ following command::
86
86
 
87
87
  pip uninstall empix
88
88
 
89
89
  If ``empix`` was installed using ``conda``, then to uninstall, run the
90
- following command from the root of the repository::
90
+ following command::
91
91
 
92
92
  conda remove empix
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.0.8'
32
- __version_tuple__ = version_tuple = (0, 0, 8)
31
+ __version__ = version = '0.0.9'
32
+ __version_tuple__ = version_tuple = (0, 0, 9)
33
33
 
34
- __commit_id__ = commit_id = 'ga30344106'
34
+ __commit_id__ = commit_id = 'g28d6964b8'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: empix
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: Contains tools for analyzing electron microscopy data that are not available in ``hyperspy``.
5
5
  Author-email: Matthew Fitzpatrick <matthew.rc.fitzpatrick@gmail.com>
6
6
  Project-URL: Homepage, https://mrfitzpa.github.io/empix
@@ -91,8 +91,8 @@ systems you could open e.g. an Anaconda Prompt as an administrator.
91
91
  #### Installing `empix` using `pip`
92
92
 
93
93
  Before installing `empix`, make sure that you have activated the (virtual)
94
- environment in which you intend to install said package. After which, simply
95
- change into the root of the repository, and run the following command:
94
+ environment in which you intend to install said package. After which, simply run
95
+ the following command:
96
96
 
97
97
  pip install empix
98
98
 
@@ -149,12 +149,12 @@ The above command will install the latest stable version of `empix`.
149
149
  ### Uninstalling `empix`
150
150
 
151
151
  If `empix` was installed using `pip`, then to uninstall, run the following
152
- command from the root of the repository:
152
+ command:
153
153
 
154
154
  pip uninstall empix
155
155
 
156
156
  If `empix` was installed using `conda`, then to uninstall, run the
157
- following command from the root of the repository:
157
+ following command:
158
158
 
159
159
  conda remove empix
160
160