ewokstools 0.0.1a0__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.
@@ -0,0 +1,20 @@
1
+ # MIT License
2
+
3
+ **Copyright (c) 2026 European Synchrotron Radiation Facility**
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: ewokstools
3
+ Version: 0.0.1a0
4
+ Summary: Methods shared between different ewoksidxx libraries
5
+ Author-email: ESRF <edgar.gutierrez-fernandez@esrf.fr>
6
+ License: # MIT License
7
+
8
+ **Copyright (c) 2026 European Synchrotron Radiation Facility**
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
11
+ this software and associated documentation files (the "Software"), to deal in
12
+ the Software without restriction, including without limitation the rights to
13
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
14
+ the Software, and to permit persons to whom the Software is furnished to do so,
15
+ subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
22
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
23
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
+
27
+ Project-URL: Homepage, https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/
28
+ Project-URL: Documentation, https://ewokstools.readthedocs.io/
29
+ Project-URL: Repository, https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/
30
+ Project-URL: Issues, https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/issues
31
+ Project-URL: Changelog, https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/-/blob/main/CHANGELOG.md
32
+ Keywords: ewoks
33
+ Classifier: Intended Audience :: Science/Research
34
+ Classifier: License :: OSI Approved :: MIT License
35
+ Classifier: Programming Language :: Python :: 3
36
+ Requires-Python: >=3.10
37
+ Description-Content-Type: text/markdown
38
+ License-File: LICENSE.md
39
+ Requires-Dist: ewoks
40
+ Requires-Dist: ewoksjob
41
+ Requires-Dist: ewoksppf
42
+ Requires-Dist: pyslurmutils
43
+ Requires-Dist: blissdata
44
+ Requires-Dist: esrf-pathlib>=1.1.0
45
+ Provides-Extra: test
46
+ Requires-Dist: pytest>=7; extra == "test"
47
+ Provides-Extra: dev
48
+ Requires-Dist: ewokstools[test]; extra == "dev"
49
+ Requires-Dist: ruff; extra == "dev"
50
+ Provides-Extra: doc
51
+ Requires-Dist: ewokstools[test]; extra == "doc"
52
+ Requires-Dist: sphinx>=4.5; extra == "doc"
53
+ Requires-Dist: sphinx-autodoc-typehints>=1.16; extra == "doc"
54
+ Requires-Dist: pydata-sphinx-theme; extra == "doc"
55
+ Requires-Dist: sphinx-copybutton; extra == "doc"
56
+ Requires-Dist: ewokssphinx>=2.0; extra == "doc"
57
+ Dynamic: license-file
58
+
59
+ # ewokstools
60
+
61
+ Methods shared between different ewoksidxx libraries
62
+
63
+ ## Documentation
64
+
65
+ https://ewokstools.readthedocs.io/
@@ -0,0 +1,7 @@
1
+ # ewokstools
2
+
3
+ Methods shared between different ewoksidxx libraries
4
+
5
+ ## Documentation
6
+
7
+ https://ewokstools.readthedocs.io/
@@ -0,0 +1,80 @@
1
+ [build-system]
2
+ requires = [
3
+ "setuptools>=61",
4
+ ]
5
+ build-backend = "setuptools.build_meta"
6
+
7
+ [project]
8
+ name = "ewokstools"
9
+ version = "0.0.1-alpha"
10
+ keywords = [
11
+ "ewoks",
12
+ ]
13
+
14
+ authors = [{name = "ESRF", email = "edgar.gutierrez-fernandez@esrf.fr"}]
15
+ description = "Methods shared between different ewoksidxx libraries"
16
+ readme = {file = "README.md", content-type = "text/markdown"}
17
+ license = {file = "LICENSE.md"}
18
+ classifiers = [
19
+ "Intended Audience :: Science/Research",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ ]
23
+ requires-python = ">=3.10"
24
+ dependencies = [
25
+ "ewoks",
26
+ "ewoksjob",
27
+ "ewoksppf",
28
+ "pyslurmutils",
29
+ "blissdata",
30
+ "esrf-pathlib >=1.1.0",
31
+ ]
32
+
33
+ [project.urls]
34
+ Homepage = "https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/"
35
+ Documentation = "https://ewokstools.readthedocs.io/"
36
+ Repository = "https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/"
37
+ Issues = "https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/issues"
38
+ Changelog = "https://gitlab.esrf.fr/workflow/ewoksapps/ewokstools/-/blob/main/CHANGELOG.md"
39
+
40
+ [project.optional-dependencies]
41
+ test = [
42
+ "pytest >=7",
43
+ ]
44
+ dev = [
45
+ "ewokstools[test]",
46
+ "ruff",
47
+ ]
48
+ doc = [
49
+ "ewokstools[test]",
50
+ "sphinx >=4.5",
51
+ "sphinx-autodoc-typehints >=1.16",
52
+ "pydata-sphinx-theme",
53
+ "sphinx-copybutton",
54
+ "ewokssphinx >=2.0"
55
+ ]
56
+
57
+ [tool.setuptools]
58
+ package-dir = {""= "src"}
59
+
60
+ [tool.setuptools.packages.find]
61
+ where = ["src"]
62
+ namespaces = false
63
+
64
+ [tool.setuptools.package-data]
65
+ "ewokstools.tests.data"= ["*/*"]
66
+
67
+ [tool.coverage.run]
68
+ omit = [
69
+ "*/tests/*"
70
+ ]
71
+ [tool.ruff.lint]
72
+ select = ["E", "F", "I", "S"]
73
+ ignore = ["E203", "E501", "E701"]
74
+
75
+ [tool.ruff.lint.per-file-ignores]
76
+ # Ignore `S101` (assert used violations) in all test files
77
+ "*/test_*.py" = ["S101"]
78
+
79
+ [tool.ruff.lint.isort]
80
+ force-single-line = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ """Shared tooling for the beamline ewoks scripts."""
2
+
3
+ from .dispatcher import EwoksDispatcher # noqa: F401
4
+ from .dispatcher import JobItem # noqa: F401
5
+ from .submit import Submitted # noqa: F401
6
+
7
+ __all__ = [
8
+ "EwoksDispatcher",
9
+ "JobItem",
10
+ "Submitted",
11
+ ]