empix 0.0.6__tar.gz → 0.0.7__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 (38) hide show
  1. {empix-0.0.6 → empix-0.0.7}/PKG-INFO +1 -1
  2. {empix-0.0.6 → empix-0.0.7}/docs/INSTALL.rst +9 -4
  3. {empix-0.0.6 → empix-0.0.7}/empix/version.py +3 -3
  4. {empix-0.0.6 → empix-0.0.7}/empix.egg-info/PKG-INFO +1 -1
  5. {empix-0.0.6 → empix-0.0.7}/.coveragerc +0 -0
  6. {empix-0.0.6 → empix-0.0.7}/.github/workflows/measure_code_coverage.yml +0 -0
  7. {empix-0.0.6 → empix-0.0.7}/.github/workflows/publish_documentation_website.yml +0 -0
  8. {empix-0.0.6 → empix-0.0.7}/.github/workflows/publish_release_to_pypi.yml +0 -0
  9. {empix-0.0.6 → empix-0.0.7}/.github/workflows/test_library.yml +0 -0
  10. {empix-0.0.6 → empix-0.0.7}/.gitignore +0 -0
  11. {empix-0.0.6 → empix-0.0.7}/LICENSE +0 -0
  12. {empix-0.0.6 → empix-0.0.7}/README.md +0 -0
  13. {empix-0.0.6 → empix-0.0.7}/docs/Makefile +0 -0
  14. {empix-0.0.6 → empix-0.0.7}/docs/_static/readthedocs_custom.css +0 -0
  15. {empix-0.0.6 → empix-0.0.7}/docs/_templates/custom_class_template.rst +0 -0
  16. {empix-0.0.6 → empix-0.0.7}/docs/_templates/custom_module_template.rst +0 -0
  17. {empix-0.0.6 → empix-0.0.7}/docs/_templates/versions.html +0 -0
  18. {empix-0.0.6 → empix-0.0.7}/docs/api.rst +0 -0
  19. {empix-0.0.6 → empix-0.0.7}/docs/build_docs.py +0 -0
  20. {empix-0.0.6 → empix-0.0.7}/docs/conf.py +0 -0
  21. {empix-0.0.6 → empix-0.0.7}/docs/examples.rst +0 -0
  22. {empix-0.0.6 → empix-0.0.7}/docs/index.rst +0 -0
  23. {empix-0.0.6 → empix-0.0.7}/docs/license.rst +0 -0
  24. {empix-0.0.6 → empix-0.0.7}/docs/make.bat +0 -0
  25. {empix-0.0.6 → empix-0.0.7}/docs/private_members_to_publish_to_docs.rst +0 -0
  26. {empix-0.0.6 → empix-0.0.7}/empix/__init__.py +0 -0
  27. {empix-0.0.6 → empix-0.0.7}/empix.egg-info/SOURCES.txt +0 -0
  28. {empix-0.0.6 → empix-0.0.7}/empix.egg-info/dependency_links.txt +0 -0
  29. {empix-0.0.6 → empix-0.0.7}/empix.egg-info/requires.txt +0 -0
  30. {empix-0.0.6 → empix-0.0.7}/empix.egg-info/top_level.txt +0 -0
  31. {empix-0.0.6 → empix-0.0.7}/examples/basic_usage.ipynb +0 -0
  32. {empix-0.0.6 → empix-0.0.7}/examples/helpers_for_basic_usage.py +0 -0
  33. {empix-0.0.6 → empix-0.0.7}/pyproject.toml +0 -0
  34. {empix-0.0.6 → empix-0.0.7}/run_tests.sh +0 -0
  35. {empix-0.0.6 → empix-0.0.7}/setup.cfg +0 -0
  36. {empix-0.0.6 → empix-0.0.7}/setup.py +0 -0
  37. {empix-0.0.6 → empix-0.0.7}/tests/test_root.py +0 -0
  38. {empix-0.0.6 → empix-0.0.7}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: empix
3
- Version: 0.0.6
3
+ Version: 0.0.7
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
@@ -3,6 +3,8 @@
3
3
  Instructions for installing and uninstalling ``empix``
4
4
  ======================================================
5
5
 
6
+
7
+
6
8
  Installing ``empix``
7
9
  --------------------
8
10
 
@@ -16,8 +18,8 @@ Installing ``empix`` using ``pip``
16
18
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
19
 
18
20
  Before installing ``empix``, make sure that you have activated the (virtual)
19
- environment in which you intend to install said package. After which, simply
20
- change into the root of the repository, and run the following command::
21
+ environment in which you intend to install said package. After which, simply run
22
+ the following command::
21
23
 
22
24
  pip install empix
23
25
 
@@ -64,8 +66,11 @@ the subset of additional dependencies specified by ``<selector>``.
64
66
  Installing ``empix`` using ``conda``
65
67
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
66
68
 
67
- To install ``empix`` using the ``conda`` package manager, run the
68
- following command::
69
+ Before proceeding, make sure that you have activated the (virtual) ``conda``
70
+ environment in which you intend to install said package.
71
+
72
+ To install ``empix`` using the ``conda`` package manager, run the following
73
+ command::
69
74
 
70
75
  conda install -c conda-forge empix
71
76
 
@@ -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.6'
32
- __version_tuple__ = version_tuple = (0, 0, 6)
31
+ __version__ = version = '0.0.7'
32
+ __version_tuple__ = version_tuple = (0, 0, 7)
33
33
 
34
- __commit_id__ = commit_id = 'gd32d8f3da'
34
+ __commit_id__ = commit_id = 'ge59d9f196'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: empix
3
- Version: 0.0.6
3
+ Version: 0.0.7
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes