empix 0.0.3__tar.gz → 0.0.4__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 (36) hide show
  1. {empix-0.0.3 → empix-0.0.4}/PKG-INFO +4 -3
  2. {empix-0.0.3 → empix-0.0.4}/empix/version.py +9 -4
  3. {empix-0.0.3 → empix-0.0.4}/empix.egg-info/PKG-INFO +4 -3
  4. {empix-0.0.3 → empix-0.0.4}/empix.egg-info/requires.txt +1 -1
  5. {empix-0.0.3 → empix-0.0.4}/pyproject.toml +1 -1
  6. {empix-0.0.3 → empix-0.0.4}/.coveragerc +0 -0
  7. {empix-0.0.3 → empix-0.0.4}/.github/workflows/measure_code_coverage.yml +0 -0
  8. {empix-0.0.3 → empix-0.0.4}/.github/workflows/publish_documentation_website.yml +0 -0
  9. {empix-0.0.3 → empix-0.0.4}/.github/workflows/publish_release_to_pypi.yml +0 -0
  10. {empix-0.0.3 → empix-0.0.4}/.github/workflows/test_library.yml +0 -0
  11. {empix-0.0.3 → empix-0.0.4}/.gitignore +0 -0
  12. {empix-0.0.3 → empix-0.0.4}/LICENSE +0 -0
  13. {empix-0.0.3 → empix-0.0.4}/README.md +0 -0
  14. {empix-0.0.3 → empix-0.0.4}/docs/INSTALL.rst +0 -0
  15. {empix-0.0.3 → empix-0.0.4}/docs/Makefile +0 -0
  16. {empix-0.0.3 → empix-0.0.4}/docs/_static/readthedocs_custom.css +0 -0
  17. {empix-0.0.3 → empix-0.0.4}/docs/_templates/custom_class_template.rst +0 -0
  18. {empix-0.0.3 → empix-0.0.4}/docs/_templates/custom_module_template.rst +0 -0
  19. {empix-0.0.3 → empix-0.0.4}/docs/_templates/versions.html +0 -0
  20. {empix-0.0.3 → empix-0.0.4}/docs/api.rst +0 -0
  21. {empix-0.0.3 → empix-0.0.4}/docs/build_docs.py +0 -0
  22. {empix-0.0.3 → empix-0.0.4}/docs/conf.py +0 -0
  23. {empix-0.0.3 → empix-0.0.4}/docs/examples.rst +0 -0
  24. {empix-0.0.3 → empix-0.0.4}/docs/index.rst +0 -0
  25. {empix-0.0.3 → empix-0.0.4}/docs/license.rst +0 -0
  26. {empix-0.0.3 → empix-0.0.4}/docs/make.bat +0 -0
  27. {empix-0.0.3 → empix-0.0.4}/docs/private_members_to_publish_to_docs.rst +0 -0
  28. {empix-0.0.3 → empix-0.0.4}/empix/__init__.py +0 -0
  29. {empix-0.0.3 → empix-0.0.4}/empix.egg-info/SOURCES.txt +0 -0
  30. {empix-0.0.3 → empix-0.0.4}/empix.egg-info/dependency_links.txt +0 -0
  31. {empix-0.0.3 → empix-0.0.4}/empix.egg-info/top_level.txt +0 -0
  32. {empix-0.0.3 → empix-0.0.4}/examples/basic_usage.ipynb +0 -0
  33. {empix-0.0.3 → empix-0.0.4}/setup.cfg +0 -0
  34. {empix-0.0.3 → empix-0.0.4}/setup.py +0 -0
  35. {empix-0.0.3 → empix-0.0.4}/tests/test_root.py +0 -0
  36. {empix-0.0.3 → empix-0.0.4}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: empix
3
- Version: 0.0.3
3
+ Version: 0.0.4
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
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: czekitout
25
25
  Requires-Dist: fancytypes>=1.0.0
26
- Requires-Dist: hyperspy[all]
26
+ Requires-Dist: hyperspy
27
27
  Requires-Dist: pyFAI
28
28
  Provides-Extra: tests
29
29
  Requires-Dist: pytest-cov; extra == "tests"
@@ -38,6 +38,7 @@ Requires-Dist: numpydoc; extra == "docs"
38
38
  Requires-Dist: docutils; extra == "docs"
39
39
  Provides-Extra: all
40
40
  Requires-Dist: empix[docs,examples,tests]; extra == "all"
41
+ Dynamic: license-file
41
42
 
42
43
  # empix
43
44
 
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '0.0.3'
16
- __version_tuple__ = version_tuple = (0, 0, 3)
20
+ __version__ = version = '0.0.4'
21
+ __version_tuple__ = version_tuple = (0, 0, 4)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: empix
3
- Version: 0.0.3
3
+ Version: 0.0.4
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
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: czekitout
25
25
  Requires-Dist: fancytypes>=1.0.0
26
- Requires-Dist: hyperspy[all]
26
+ Requires-Dist: hyperspy
27
27
  Requires-Dist: pyFAI
28
28
  Provides-Extra: tests
29
29
  Requires-Dist: pytest-cov; extra == "tests"
@@ -38,6 +38,7 @@ Requires-Dist: numpydoc; extra == "docs"
38
38
  Requires-Dist: docutils; extra == "docs"
39
39
  Provides-Extra: all
40
40
  Requires-Dist: empix[docs,examples,tests]; extra == "all"
41
+ Dynamic: license-file
41
42
 
42
43
  # empix
43
44
 
@@ -1,6 +1,6 @@
1
1
  czekitout
2
2
  fancytypes>=1.0.0
3
- hyperspy[all]
3
+ hyperspy
4
4
  pyFAI
5
5
 
6
6
  [all]
@@ -39,7 +39,7 @@ keywords = [
39
39
  dependencies = [
40
40
  "czekitout",
41
41
  "fancytypes>=1.0.0",
42
- "hyperspy[all]",
42
+ "hyperspy",
43
43
  "pyFAI"
44
44
  ]
45
45
  requires-python = ">=3.8"
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