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.
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/PKG-INFO +4 -4
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/pyproject.toml +6 -2
- pypowder-0.0.0a4/src/PyPOW/__version__.py +24 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/PKG-INFO +4 -4
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/SOURCES.txt +1 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/scm_version.json +2 -2
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/.gitattributes +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/.github/workflows/python-publish.yml +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/.gitignore +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/LICENCE +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/README.md +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/RunConversion.bat +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/requirements.txt +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/setup.cfg +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/__init__.py +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/import_module.py +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/lab.py +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPOW/run_XY_conversion.py +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/dependency_links.txt +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/requires.txt +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/scm_file_list.json +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/src/PyPowder.egg-info/top_level.txt +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.XRDML +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.csv +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.gsas +0 -0
- {pypowder-0.0.0a3 → pypowder-0.0.0a4}/tests/ASG1_1.xy +0 -0
- {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.
|
|
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/
|
|
8
|
-
Project-URL: Issues, https://github.com/
|
|
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/
|
|
29
|
-
Issues = "https://github.com/
|
|
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.
|
|
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/
|
|
8
|
-
Project-URL: Issues, https://github.com/
|
|
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
|
|
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
|