PyPowder 0.0.0a3__tar.gz → 0.0.0a4__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.0a3 → pypowder-0.0.0a4}/PKG-INFO +4 -4
  2. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/pyproject.toml +6 -2
  3. pypowder-0.0.0a4/src/PyPOW/__version__.py +24 -0
  4. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/PKG-INFO +4 -4
  5. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/SOURCES.txt +1 -0
  6. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/scm_version.json +2 -2
  7. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/.gitattributes +0 -0
  8. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/.github/workflows/python-publish.yml +0 -0
  9. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/.gitignore +0 -0
  10. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/LICENCE +0 -0
  11. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/README.md +0 -0
  12. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/RunConversion.bat +0 -0
  13. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/requirements.txt +0 -0
  14. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/setup.cfg +0 -0
  15. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/__init__.py +0 -0
  16. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/import_module.py +0 -0
  17. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/lab.py +0 -0
  18. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/run_XY_conversion.py +0 -0
  19. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/dependency_links.txt +0 -0
  20. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/requires.txt +0 -0
  21. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/scm_file_list.json +0 -0
  22. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/top_level.txt +0 -0
  23. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.XRDML +0 -0
  24. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.csv +0 -0
  25. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.gsas +0 -0
  26. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.xy +0 -0
  27. {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/working_example.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyPowder
3
- Version: 0.0.0a3
3
+ Version: 0.0.0a4
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>
5
+ Author-email: Diogo Almeida <dafda1@st-andrews.ac.uk>, Max Pelly <mp250@st-andrews.ac.uk>
6
6
  License-Expression: GPL-3.0-or-later
7
- Project-URL: Homepage, https://github.com/dafda1/PyPOW
8
- Project-URL: Issues, https://github.com/dafda1/PyPOW/issues
7
+ Project-URL: Homepage, https://github.com/MaxPelly/PyPOW
8
+ Project-URL: Issues, https://github.com/MaxPelly/PyPOW/issues
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.9
@@ -7,6 +7,7 @@ name = "PyPowder"
7
7
  dynamic = ["version"]
8
8
  authors = [
9
9
  { name="Diogo Almeida", email="dafda1@st-andrews.ac.uk" },
10
+ { name="Max Pelly", email="mp250@st-andrews.ac.uk" },
10
11
  ]
11
12
  description = "Attempt at constructing a set of tools to convert XRDML files to a more usable format."
12
13
  readme = "README.md"
@@ -25,5 +26,8 @@ license = "GPL-3.0-or-later"
25
26
  license-files = ["LICEN[CS]E*"]
26
27
 
27
28
  [project.urls]
28
- Homepage = "https://github.com/dafda1/PyPOW"
29
- Issues = "https://github.com/dafda1/PyPOW/issues"
29
+ Homepage = "https://github.com/MaxPelly/PyPOW"
30
+ Issues = "https://github.com/MaxPelly/PyPOW/issues"
31
+
32
+ [tool.setuptools_scm]
33
+ version_file = "src/PyPOW/__version__.py"
@@ -0,0 +1,24 @@
1
+ # file generated by vcs-versioning
2
+ # don't change, don't track in version control
3
+ from __future__ import annotations
4
+
5
+ __all__ = [
6
+ "__version__",
7
+ "__version_tuple__",
8
+ "version",
9
+ "version_tuple",
10
+ "__commit_id__",
11
+ "commit_id",
12
+ ]
13
+
14
+ version: str
15
+ __version__: str
16
+ __version_tuple__: tuple[int | str, ...]
17
+ version_tuple: tuple[int | str, ...]
18
+ commit_id: str | None
19
+ __commit_id__: str | None
20
+
21
+ __version__ = version = '0.0.0a4'
22
+ __version_tuple__ = version_tuple = (0, 0, 0, 'a4')
23
+
24
+ __commit_id__ = commit_id = 'g4bd43426a'
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyPowder
3
- Version: 0.0.0a3
3
+ Version: 0.0.0a4
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>
5
+ Author-email: Diogo Almeida <dafda1@st-andrews.ac.uk>, Max Pelly <mp250@st-andrews.ac.uk>
6
6
  License-Expression: GPL-3.0-or-later
7
- Project-URL: Homepage, https://github.com/dafda1/PyPOW
8
- Project-URL: Issues, https://github.com/dafda1/PyPOW/issues
7
+ Project-URL: Homepage, https://github.com/MaxPelly/PyPOW
8
+ Project-URL: Issues, https://github.com/MaxPelly/PyPOW/issues
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.9
@@ -7,6 +7,7 @@ pyproject.toml
7
7
  requirements.txt
8
8
  .github/workflows/python-publish.yml
9
9
  src/PyPOW/__init__.py
10
+ src/PyPOW/__version__.py
10
11
  src/PyPOW/import_module.py
11
12
  src/PyPOW/lab.py
12
13
  src/PyPOW/run_XY_conversion.py
@@ -1,7 +1,7 @@
1
1
  {
2
- "tag": "0.0.0a3",
2
+ "tag": "0.0.0a4",
3
3
  "distance": 0,
4
- "node": "g3ea66b9c74f885be3c156f18d5498f5afb89f090",
4
+ "node": "g4bd43426a2eb12d47f5f4e556dd642297b50aea2",
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
File without changes