commonmeta-py 0.75__py3-none-any.whl → 0.78__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.
commonmeta/__init__.py CHANGED
@@ -10,7 +10,7 @@ commonmeta-py is a Python library to convert scholarly metadata
10
10
  """
11
11
 
12
12
  __title__ = "commonmeta-py"
13
- __version__ = "0.75"
13
+ __version__ = "0.78"
14
14
  __author__ = "Martin Fenner"
15
15
  __license__ = "MIT"
16
16
 
@@ -59,6 +59,7 @@ from .utils import (
59
59
  extract_url,
60
60
  extract_urls,
61
61
  extract_curie,
62
+ replace_curie,
62
63
  )
63
64
  from .author_utils import (
64
65
  authors_as_string,
commonmeta/constants.py CHANGED
@@ -244,6 +244,7 @@ INVENIORDM_TO_CM_TRANSLATIONS = {
244
244
  "conferencepaper": "ProceedingsArticle",
245
245
  "patent": "Patent",
246
246
  "publication": "JournalArticle",
247
+ "publication-blogpost": "BlogPost",
247
248
  "publication-preprint": "Article",
248
249
  "report": "Report",
249
250
  "softwaredocumentation": "Software",
@@ -272,7 +273,7 @@ INVENIORDM_TO_CM_TRANSLATIONS = {
272
273
 
273
274
  CM_TO_INVENIORDM_TRANSLATIONS = {
274
275
  "Article": "publication-preprint",
275
- "BlogPost": "publication-preprint",
276
+ "BlogPost": "publication-blogpost",
276
277
  "Book": "book",
277
278
  "Dataset": "dataset",
278
279
  "Image": "image-other",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commonmeta-py
3
- Version: 0.75
3
+ Version: 0.78
4
4
  Summary: Library for conversions to/from the Commonmeta scholarly metadata format
5
5
  Project-URL: Homepage, https://python.commonmeta.org
6
6
  Project-URL: Repository, https://github.com/front-matter/commonmeta-py
@@ -21,7 +21,7 @@ Requires-Dist: citeproc-py<0.7,>=0.6
21
21
  Requires-Dist: click<9,>=8.1.7
22
22
  Requires-Dist: datacite~=1.1
23
23
  Requires-Dist: dateparser<2,>=1.1.7
24
- Requires-Dist: docutils<0.20,>=0.19
24
+ Requires-Dist: docutils<0.22,>=0.19
25
25
  Requires-Dist: edtf<6,>=5.0.0
26
26
  Requires-Dist: furl<3,>=2.1.3
27
27
  Requires-Dist: httpx<0.29,>=0.28
@@ -33,14 +33,14 @@ Requires-Dist: nh3<0.3,>=0.2.14
33
33
  Requires-Dist: orjson<4,>=3.9.14
34
34
  Requires-Dist: orjsonl<2,>=1.0.0
35
35
  Requires-Dist: pikepdf<10.0,>=8.14
36
- Requires-Dist: pycountry<24,>=23.12.11
37
- Requires-Dist: pydash~=7.0
36
+ Requires-Dist: pycountry<25,>=23.12.11
37
+ Requires-Dist: pydash<9,>=7
38
38
  Requires-Dist: pyjwt<3,>=2.8.0
39
39
  Requires-Dist: python-dateutil<3,>=2.8.2
40
40
  Requires-Dist: pyyaml~=6.0
41
- Requires-Dist: setuptools~=70.0
41
+ Requires-Dist: setuptools<76,>=70
42
42
  Requires-Dist: simplejson~=3.18
43
- Requires-Dist: sphinx-autodoc-typehints~=1.19
43
+ Requires-Dist: sphinx-autodoc-typehints<4.0,>=1.19
44
44
  Requires-Dist: sphinxcontrib-issuetracker<0.12,>=0.11
45
45
  Requires-Dist: types-beautifulsoup4~=4.11
46
46
  Requires-Dist: types-dateparser~=1.1
@@ -1,9 +1,9 @@
1
- commonmeta/__init__.py,sha256=lNosYNS7L7Rqp2snKZHwRszSyam6_9kZyO0dR0PeyVg,1875
1
+ commonmeta/__init__.py,sha256=2HuFD0x4p7xSthp-gQ-eHLqisLgCW0CHOeq132Naa6g,1894
2
2
  commonmeta/api_utils.py,sha256=-ZHGVZZhJqnjnsLtp4-PoeHYbDqL0cQme7W70BEjo4U,2677
3
3
  commonmeta/author_utils.py,sha256=zBIPTgP5n7Zx57xomJ2h7x0dvC0AV8gJ2gPoYeDy5Lo,8348
4
4
  commonmeta/base_utils.py,sha256=AsUElA5kT2fw_Osy7Uaj2F6MKeq9yB7d5f2V-h2lh7c,3750
5
5
  commonmeta/cli.py,sha256=sOI9BJTePnljVcXcZ95N7TKXDT283XpjUaak7bMnbr0,6076
6
- commonmeta/constants.py,sha256=T-kNocQBTuF3MXlMuPKywV3-viHVCWF_Kclkm-7G43s,18308
6
+ commonmeta/constants.py,sha256=50ubqc34mqDPXp_bI--rEOoXFiNF4mz_V66lk8FsxL4,18348
7
7
  commonmeta/crossref_utils.py,sha256=ijcdAdV2HHUXP2twIKIQP9Ln2xsysU3n9nwQDg-ZAxU,22224
8
8
  commonmeta/date_utils.py,sha256=rJRV4YmWKQWU__iAV8www3cqwaefC0iRKyHwvxrr_XY,6316
9
9
  commonmeta/doi_utils.py,sha256=s2J95V9rWPbGsh5oNXht3yJkJ0NmVLRlOXDPXjnN-Ck,9152
@@ -69,8 +69,8 @@ commonmeta/writers/datacite_writer.py,sha256=UpDp4Brg5xrmS5T3QYoNi6PPXKdRxAo254e
69
69
  commonmeta/writers/inveniordm_writer.py,sha256=TctfZsiB8aiXWDLijJpxjMM77aKY6-hgKeAPDMfZoh4,11438
70
70
  commonmeta/writers/ris_writer.py,sha256=AcnCszS3WY9lF594NbFBtLylsA8ownnYp_XLQJ84Ios,2093
71
71
  commonmeta/writers/schema_org_writer.py,sha256=5j002uCNLdlScZMNQmPjodcVWqaBh2z38zL1H4lo2hY,5741
72
- commonmeta_py-0.75.dist-info/METADATA,sha256=mBeKmlKrFby8FJHM4SPhzxQP6epxsD9B4al_pSUewPA,7731
73
- commonmeta_py-0.75.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
74
- commonmeta_py-0.75.dist-info/entry_points.txt,sha256=U4w4BoRuS3rN5t5Y-uYSyOeU5Lh_VRVMS9OIDzIgw4w,50
75
- commonmeta_py-0.75.dist-info/licenses/LICENSE,sha256=746hEF2wZCKkcckk5-_DcBLtHewfaEMS4iXTlA1PVwk,1074
76
- commonmeta_py-0.75.dist-info/RECORD,,
72
+ commonmeta_py-0.78.dist-info/METADATA,sha256=WMXtb7ilLRrCz29zn_nPpPIS48h85ipmip6I9rmv1Yo,7739
73
+ commonmeta_py-0.78.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
74
+ commonmeta_py-0.78.dist-info/entry_points.txt,sha256=U4w4BoRuS3rN5t5Y-uYSyOeU5Lh_VRVMS9OIDzIgw4w,50
75
+ commonmeta_py-0.78.dist-info/licenses/LICENSE,sha256=746hEF2wZCKkcckk5-_DcBLtHewfaEMS4iXTlA1PVwk,1074
76
+ commonmeta_py-0.78.dist-info/RECORD,,