PyPowder 0.0.0a5__tar.gz → 0.0.0a6__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 (27) hide show
  1. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/PKG-INFO +3 -2
  2. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/pyproject.toml +5 -2
  3. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/__version__.py +3 -3
  4. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/PKG-INFO +3 -2
  5. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/scm_version.json +2 -2
  6. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/.gitattributes +0 -0
  7. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/.github/workflows/python-publish.yml +0 -0
  8. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/.gitignore +0 -0
  9. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/LICENCE +0 -0
  10. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/README.md +0 -0
  11. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/RunConversion.bat +0 -0
  12. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/setup.cfg +0 -0
  13. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/__init__.py +0 -0
  14. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/__main__.py +0 -0
  15. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/import_module.py +0 -0
  16. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/SOURCES.txt +0 -0
  17. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/dependency_links.txt +0 -0
  18. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/entry_points.txt +0 -0
  19. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/requires.txt +0 -0
  20. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/scm_file_list.json +0 -0
  21. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/top_level.txt +0 -0
  22. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.XRDML +0 -0
  23. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.csv +0 -0
  24. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.gsas +0 -0
  25. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.xy +0 -0
  26. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/lab.py +0 -0
  27. {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/working_example.py +0 -0
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyPowder
3
- Version: 0.0.0a5
3
+ Version: 0.0.0a6
4
4
  Summary: Attempt at constructing a set of tools to convert XRDML files to a more usable format.
5
- Author-email: Diogo Almeida <dafda1@st-andrews.ac.uk>, Max Pelly <mp250@st-andrews.ac.uk>
5
+ Author: Diogo Almeida, Max Pelly
6
+ Maintainer-email: Diogo Almeida <dafda1@st-andrews.ac.uk>
6
7
  License-Expression: GPL-3.0-or-later
7
8
  Project-URL: Homepage, https://github.com/MaxPelly/PyPOW
8
9
  Project-URL: Issues, https://github.com/MaxPelly/PyPOW/issues
@@ -6,8 +6,11 @@ build-backend = "setuptools.build_meta"
6
6
  name = "PyPowder"
7
7
  dynamic = ["version"]
8
8
  authors = [
9
- { name="Diogo Almeida", email="dafda1@st-andrews.ac.uk" },
10
- { name="Max Pelly", email="mp250@st-andrews.ac.uk" },
9
+ { name="Diogo Almeida"},
10
+ { name="Max Pelly"},
11
+ ]
12
+ maintainers = [
13
+ { name="Diogo Almeida", email="dafda1@st-andrews.ac.uk" }
11
14
  ]
12
15
  description = "Attempt at constructing a set of tools to convert XRDML files to a more usable format."
13
16
  readme = "README.md"
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.0.0a5'
22
- __version_tuple__ = version_tuple = (0, 0, 0, 'a5')
21
+ __version__ = version = '0.0.0a6'
22
+ __version_tuple__ = version_tuple = (0, 0, 0, 'a6')
23
23
 
24
- __commit_id__ = commit_id = 'g91f4eb88d'
24
+ __commit_id__ = commit_id = 'g76a837c19'
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyPowder
3
- Version: 0.0.0a5
3
+ Version: 0.0.0a6
4
4
  Summary: Attempt at constructing a set of tools to convert XRDML files to a more usable format.
5
- Author-email: Diogo Almeida <dafda1@st-andrews.ac.uk>, Max Pelly <mp250@st-andrews.ac.uk>
5
+ Author: Diogo Almeida, Max Pelly
6
+ Maintainer-email: Diogo Almeida <dafda1@st-andrews.ac.uk>
6
7
  License-Expression: GPL-3.0-or-later
7
8
  Project-URL: Homepage, https://github.com/MaxPelly/PyPOW
8
9
  Project-URL: Issues, https://github.com/MaxPelly/PyPOW/issues
@@ -1,7 +1,7 @@
1
1
  {
2
- "tag": "0.0.0a5",
2
+ "tag": "0.0.0a6",
3
3
  "distance": 0,
4
- "node": "g91f4eb88dcd1a11aaecadbb663b99166a1a0221c",
4
+ "node": "g76a837c19749fd2b9967f3d049acf6f311946871",
5
5
  "dirty": false,
6
6
  "branch": "HEAD",
7
7
  "node_date": "2026-07-14"
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