rda-python-dsquasar 1.0.0__tar.gz → 1.0.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rda_python_dsquasar
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: RDA Python package to backup and recover RDA data archives to and from GLOBUS Quasar backup server
5
5
  Author-email: Zaihua Ji <zji@ucar.edu>
6
6
  Project-URL: Homepage, https://github.com/NCAR/rda-python-dsquasar
@@ -11,5 +11,7 @@ Classifier: Development Status :: 5 - Production/Stable
11
11
  Requires-Python: >=3.7
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Requires-Dist: rda_python_common
15
+ Requires-Dist: rda_python_dsarch
14
16
 
15
- RDA python code template to create new and modify existing RDA python packages.
17
+ RDA python package to backup RDA dataset data onto Globus Quasar Server.
@@ -0,0 +1 @@
1
+ RDA python package to backup RDA dataset data onto Globus Quasar Server.
@@ -1,14 +1,10 @@
1
1
  [build-system]
2
- requires = [
3
- "setuptools>=61.0",
4
- "rda_python_common",
5
- "rda_python_dsarch"
6
- ]
2
+ requires = ["setuptools>=61.0"]
7
3
  build-backend = "setuptools.build_meta"
8
4
 
9
5
  [project]
10
6
  name = "rda_python_dsquasar"
11
- version = "1.0.0"
7
+ version = "1.0.2"
12
8
  authors = [
13
9
  { name="Zaihua Ji", email="zji@ucar.edu" },
14
10
  ]
@@ -21,6 +17,10 @@ classifiers = [
21
17
  "Operating System :: OS Independent",
22
18
  "Development Status :: 5 - Production/Stable",
23
19
  ]
20
+ dependencies = [
21
+ "rda_python_common",
22
+ "rda_python_dsarch",
23
+ ]
24
24
 
25
25
  [project.urls]
26
26
  "Homepage" = "https://github.com/NCAR/rda-python-dsquasar"
@@ -5,7 +5,7 @@
5
5
  # Title : dsquasar
6
6
  # Author : Zaihua Ji, zji@ucar.edu
7
7
  # Date : 12/21/2020
8
- # 2025-02-05 transferred to package rda_python_dsarch from
8
+ # 2025-02-05 transferred to package rda_python_dsquasar from
9
9
  # https://github.com/NCAR/rda-utility-programs.git
10
10
  # Purpose : check Backup flags set in dataset.backflag and/or dsgroup.backflag of RDADB
11
11
  # to gather Web and Saved bfiles, tar them into larger (> 2GB) bfiles, and
@@ -24,14 +24,14 @@ import sys
24
24
  import time
25
25
  from os import path as op
26
26
  from time import time as tm
27
- from rda_python_commn import PgLOG
28
- from rda_python_commn import PgSIG
29
- from rda_python_commn import PgCMD
30
- from rda_python_commn import PgUtil
31
- from rda_python_commn import PgFile
32
- from rda_python_commn import PgLock
33
- from rda_python_commn import PgDBI
34
- from rda_python_commn import PgSplit
27
+ from rda_python_common import PgLOG
28
+ from rda_python_common import PgSIG
29
+ from rda_python_common import PgCMD
30
+ from rda_python_common import PgUtil
31
+ from rda_python_common import PgFile
32
+ from rda_python_common import PgLock
33
+ from rda_python_common import PgDBI
34
+ from rda_python_common import PgSplit
35
35
 
36
36
  BACKMSG = {
37
37
  'B' : "Quasar Backup",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rda_python_dsquasar
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: RDA Python package to backup and recover RDA data archives to and from GLOBUS Quasar backup server
5
5
  Author-email: Zaihua Ji <zji@ucar.edu>
6
6
  Project-URL: Homepage, https://github.com/NCAR/rda-python-dsquasar
@@ -11,5 +11,7 @@ Classifier: Development Status :: 5 - Production/Stable
11
11
  Requires-Python: >=3.7
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Requires-Dist: rda_python_common
15
+ Requires-Dist: rda_python_dsarch
14
16
 
15
- RDA python code template to create new and modify existing RDA python packages.
17
+ RDA python package to backup RDA dataset data onto Globus Quasar Server.
@@ -7,5 +7,6 @@ src/rda_python_dsquasar.egg-info/PKG-INFO
7
7
  src/rda_python_dsquasar.egg-info/SOURCES.txt
8
8
  src/rda_python_dsquasar.egg-info/dependency_links.txt
9
9
  src/rda_python_dsquasar.egg-info/entry_points.txt
10
+ src/rda_python_dsquasar.egg-info/requires.txt
10
11
  src/rda_python_dsquasar.egg-info/top_level.txt
11
12
  tests/test_dsquasar.py
@@ -0,0 +1,2 @@
1
+ rda_python_common
2
+ rda_python_dsarch
@@ -1 +0,0 @@
1
- RDA python code template to create new and modify existing RDA python packages.