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.
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/PKG-INFO +3 -2
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/pyproject.toml +5 -2
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/__version__.py +3 -3
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/PKG-INFO +3 -2
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/scm_version.json +2 -2
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/.gitattributes +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/.github/workflows/python-publish.yml +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/.gitignore +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/LICENCE +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/README.md +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/RunConversion.bat +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/setup.cfg +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/__init__.py +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/__main__.py +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPOW/import_module.py +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/SOURCES.txt +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/dependency_links.txt +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/entry_points.txt +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/requires.txt +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/scm_file_list.json +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/src/PyPowder.egg-info/top_level.txt +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.XRDML +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.csv +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.gsas +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/ASG1_1.xy +0 -0
- {pypowder-0.0.0a5 → pypowder-0.0.0a6}/tests/lab.py +0 -0
- {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.
|
|
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
|
|
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"
|
|
10
|
-
{ name="Max Pelly"
|
|
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.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 0, 0, '
|
|
21
|
+
__version__ = version = '0.0.0a6'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 0, 'a6')
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g76a837c19'
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyPowder
|
|
3
|
-
Version: 0.0.
|
|
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
|
|
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
|
|
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
|