dryad2dataverse 0.7.10__tar.gz → 0.7.11a0__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
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: dryad2dataverse
3
- Version: 0.7.10
3
+ Version: 0.7.11a0
4
4
  Summary: Utility for copying and syncing data from a Dryad data repository to a Dataverse repository
5
5
  License: MIT
6
6
  Keywords: Harvard Dataverse,Dataverse,research data management,data repository,Dryad,datadryad.org,dataverse.org
@@ -17,6 +17,7 @@ Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
19
  Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
20
21
  Classifier: Topic :: Education
21
22
  Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
22
23
  Classifier: Topic :: Utilities
@@ -29,7 +30,7 @@ Requires-Dist: pydoc-markdown (>=4.8.2,<5.0.0)
29
30
  Requires-Dist: requests (>=2.26.0)
30
31
  Requires-Dist: requests-toolbelt (>=0.9.1)
31
32
  Requires-Dist: setuptools (>=80.8.0,<81.0.0)
32
- Requires-Dist: urllib3 (>=2.6.1)
33
+ Requires-Dist: urllib3 (>=2.6.3)
33
34
  Project-URL: Bug Tracker, https://github.com/ubc-library-rc/dryad2dataverse/issues
34
35
  Project-URL: Documentation, https://ubc-library-rc.github.io/dryad2dataverse
35
36
  Project-URL: Homepage, https://ubc-library-rc.github.io/dryad2dataverse
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "dryad2dataverse"
3
- version = "0.7.10"
3
+ version = "0.7.11a0"
4
4
  description = "Utility for copying and syncing data from a Dryad data repository to a Dataverse repository"
5
5
  authors = [
6
6
  {name = "Paul Lesack",email = "paul.lesack@ubc.ca"}
@@ -16,7 +16,7 @@ dependencies = [
16
16
  "pycryptodome (>=3.20.0)",
17
17
  "requests (>=2.26.0)",
18
18
  "requests-toolbelt (>=0.9.1)",
19
- "urllib3 (>=2.6.1)",
19
+ "urllib3 (>=2.6.3)",
20
20
  "pydoc-markdown (>=4.8.2,<5.0.0)",
21
21
  "setuptools (>=80.8.0,<81.0.0)"
22
22
  ]
@@ -24,7 +24,7 @@ Modules included:
24
24
  '''
25
25
  import sys
26
26
 
27
- VERSION = (0, 7, 10)
27
+ VERSION = (0, 7, '11a0')
28
28
  __version__ = '.'.join([str(x) for x in VERSION])
29
29
  USERAGENT = (f'dryad2dataverse/v{__version__} ({sys.platform.capitalize()}); '
30
30
  f'Python {sys.version[:sys.version.find("(")-1]}')