ctao-dpps-clients 0.0.0.dev0__py3-none-any.whl
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,36 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: ctao-dpps-clients
|
|
3
|
+
Version: 0.0.0.dev0
|
|
4
|
+
Summary: DPPS python clients package
|
|
5
|
+
Author: The CTAO DPPS team
|
|
6
|
+
Maintainer-email: Maximilian Linhoff <maximilian.linhoff@cta-observatory.org>
|
|
7
|
+
License: BSD-3-Clause
|
|
8
|
+
Project-URL: repository, https://gitlab.cta-observatory.org/cta-computing/dpps/dpps
|
|
9
|
+
Project-URL: documentation, http://cta-computing.gitlab-pages.cta-observatory.org/dpps/dpps/
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: ctao-wms-clients~=0.1.0rc2
|
|
13
|
+
Requires-Dist: ctao-bdms-clients~=0.1.0rc3
|
|
14
|
+
Provides-Extra: test
|
|
15
|
+
Requires-Dist: pytest; extra == "test"
|
|
16
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
17
|
+
Requires-Dist: pytest-requirements; extra == "test"
|
|
18
|
+
Provides-Extra: doc
|
|
19
|
+
Requires-Dist: sphinx; extra == "doc"
|
|
20
|
+
Requires-Dist: numpydoc; extra == "doc"
|
|
21
|
+
Requires-Dist: ctao-sphinx-theme; extra == "doc"
|
|
22
|
+
Requires-Dist: myst-parser; extra == "doc"
|
|
23
|
+
Requires-Dist: sphinx-changelog; extra == "doc"
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: setuptools_scm; extra == "dev"
|
|
26
|
+
Requires-Dist: sphinx-autobuild; extra == "dev"
|
|
27
|
+
|
|
28
|
+
# Data Processing and Preservation System (DPPS)
|
|
29
|
+
|
|
30
|
+
The Data Processing and Preservation Systems is one of the major components of CTAO Computing.
|
|
31
|
+
|
|
32
|
+
It is responsible for transferring and preserving the DL0 data produced by
|
|
33
|
+
[ACADA](https://gitlab.cta-observatory.org/cta-computing/acada/array-control-and-data-acquisition)
|
|
34
|
+
and then processing it to data level DL3.
|
|
35
|
+
|
|
36
|
+
See [the documentation](http://cta-computing.gitlab-pages.cta-observatory.org/dpps/dpps) for more details.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
dpps/__init__.py,sha256=pV0HdAkZRKR0zkjVkPSyosdWf1AgJ8NjGBhy14-ChFI,574
|
|
2
|
+
dpps/_version.py,sha256=qharzApsLGL2RoMhav5KFtnE6oeBEGFs89k6qEvDTIw,424
|
|
3
|
+
ctao_dpps_clients-0.0.0.dev0.dist-info/METADATA,sha256=Lykz1D7wc8xksJ5CliI7c3_zxXryW4hQlAi7grpra1Y,1533
|
|
4
|
+
ctao_dpps_clients-0.0.0.dev0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
5
|
+
ctao_dpps_clients-0.0.0.dev0.dist-info/top_level.txt,sha256=WBAJy5nRRuZq7uYUHoLhaxKRx4Fjs1TQewXwSqDZtfQ,5
|
|
6
|
+
ctao_dpps_clients-0.0.0.dev0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dpps
|
dpps/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
CTAO Data Processing and Preservation System python clients.
|
|
3
|
+
|
|
4
|
+
This is at the moment a pure meta-package pinning to specific
|
|
5
|
+
versions of the python client libraries of the DPPS subsystems.
|
|
6
|
+
"""
|
|
7
|
+
from bdms import __version__ as bdms_version
|
|
8
|
+
from rucio.version import canonical_version_string as get_rucio_version
|
|
9
|
+
from wms import __version__ as wms_version
|
|
10
|
+
|
|
11
|
+
from ._version import __version__
|
|
12
|
+
|
|
13
|
+
VERSION_INFO = {
|
|
14
|
+
"dpps": __version__,
|
|
15
|
+
"bdms": bdms_version,
|
|
16
|
+
"wms": wms_version,
|
|
17
|
+
"rucio": get_rucio_version(),
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"__version__",
|
|
22
|
+
"VERSION_INFO",
|
|
23
|
+
]
|
dpps/_version.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# file generated by setuptools_scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
TYPE_CHECKING = False
|
|
4
|
+
if TYPE_CHECKING:
|
|
5
|
+
from typing import Tuple, Union
|
|
6
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
|
+
else:
|
|
8
|
+
VERSION_TUPLE = object
|
|
9
|
+
|
|
10
|
+
version: str
|
|
11
|
+
__version__: str
|
|
12
|
+
__version_tuple__: VERSION_TUPLE
|
|
13
|
+
version_tuple: VERSION_TUPLE
|
|
14
|
+
|
|
15
|
+
__version__ = version = '0.0.0.dev0'
|
|
16
|
+
__version_tuple__ = version_tuple = (0, 0, 0, 'dev0')
|